comlete story 2.2 with qa test & updated architect files

This commit is contained in:
Naser Mansour
2025-12-26 15:43:06 +02:00
parent 0ec089bbb1
commit b9009ca1df
13 changed files with 2281 additions and 57 deletions
+8
View File
@@ -51,6 +51,14 @@ Route::middleware(['auth', 'active'])->group(function () {
Volt::route('/{client}', 'admin.clients.individual.show')->name('show');
Volt::route('/{client}/edit', 'admin.clients.individual.edit')->name('edit');
});
// Company Clients Management
Route::prefix('clients/company')->name('admin.clients.company.')->group(function () {
Volt::route('/', 'admin.clients.company.index')->name('index');
Volt::route('/create', 'admin.clients.company.create')->name('create');
Volt::route('/{client}', 'admin.clients.company.show')->name('show');
Volt::route('/{client}/edit', 'admin.clients.company.edit')->name('edit');
});
});
// Client routes