|
@@ -398,6 +398,7 @@ Route::prefix('/pros/view/{uid}')->group(function () {
|
|
|
Route::get('ACTION_updateProfileImage', 'pros_SINGLE_Controller@ACTION_updateProfileImage')->name('pros_SINGLE-ACTION_updateProfileImage');
|
|
|
Route::get('ACTION_updateProfileData', 'pros_SINGLE_Controller@ACTION_updateProfileData')->name('pros_SINGLE-ACTION_updateProfileData');
|
|
|
Route::get('ACTION_putProMemo', 'pros_SINGLE_Controller@ACTION_putProMemo')->name('pros_SINGLE-ACTION_putProMemo');
|
|
|
+ Route::get('ACTION_putCompany', 'pros_SINGLE_Controller@ACTION_putCompany')->name('pros_SINGLE-ACTION_putCompany');
|
|
|
Route::get('SUB_dashboard', 'pros_SINGLE_Controller@SUB_dashboard')->name('pros_SINGLE-SUB_dashboard');
|
|
|
Route::get('SUB_pro_rates', 'pros_SINGLE_Controller@SUB_pro_rates')->name('pros_SINGLE-SUB_pro_rates');
|
|
|
Route::get('SUB_note_templates', 'pros_SINGLE_Controller@SUB_note_templates')->name('pros_SINGLE-SUB_note_templates');
|
|
@@ -654,6 +655,13 @@ Route::prefix('/mb_claim')->group(function () {
|
|
|
Route::get('view/{uid}', 'mb_claim_Controller@view')->name('mb_claim-view');
|
|
|
});
|
|
|
|
|
|
+// --- admin: companies --- //
|
|
|
+Route::prefix('/companies')->group(function () {
|
|
|
+ Route::get('', 'companies_Controller@index')->name('companies-index');
|
|
|
+ Route::get('add_new', 'companies_Controller@add_new')->name('companies-add_new');
|
|
|
+ Route::get('view/{uid}', 'companies_Controller@view')->name('companies-view');
|
|
|
+});
|
|
|
+
|
|
|
// --- admin: companies_SINGLE --- //
|
|
|
Route::prefix('/companies/view/{uid}')->group(function () {
|
|
|
Route::get('ACTION_deactivate', 'companies_SINGLE_Controller@ACTION_deactivate')->name('companies_SINGLE-ACTION_deactivate');
|
|
@@ -662,9 +670,29 @@ Route::prefix('/companies/view/{uid}')->group(function () {
|
|
|
Route::get('SUB_dashboard', 'companies_SINGLE_Controller@SUB_dashboard')->name('companies_SINGLE-SUB_dashboard');
|
|
|
});
|
|
|
|
|
|
-// --- admin: companies --- //
|
|
|
-Route::prefix('/companies')->group(function () {
|
|
|
- Route::get('', 'companies_Controller@index')->name('companies-index');
|
|
|
- Route::get('add_new', 'companies_Controller@add_new')->name('companies-add_new');
|
|
|
- Route::get('view/{uid}', 'companies_Controller@view')->name('companies-view');
|
|
|
+// --- admin: accounts --- //
|
|
|
+Route::prefix('/accounts')->group(function () {
|
|
|
+ Route::get('', 'accounts_Controller@index')->name('accounts-index');
|
|
|
+ Route::get('view/{uid}', 'accounts_Controller@view')->name('accounts-view');
|
|
|
+});
|
|
|
+
|
|
|
+// --- admin: accounts_SINGLE --- //
|
|
|
+Route::prefix('/accounts/view/{uid}')->group(function () {
|
|
|
+ Route::get('ACTION_deactivate', 'accounts_SINGLE_Controller@ACTION_deactivate')->name('accounts_SINGLE-ACTION_deactivate');
|
|
|
+ Route::get('ACTION_reactivate', 'accounts_SINGLE_Controller@ACTION_reactivate')->name('accounts_SINGLE-ACTION_reactivate');
|
|
|
+ Route::get('SUB_dashboard', 'accounts_SINGLE_Controller@SUB_dashboard')->name('accounts_SINGLE-SUB_dashboard');
|
|
|
+ Route::get('SUB_clients', 'accounts_SINGLE_Controller@SUB_clients')->name('accounts_SINGLE-SUB_clients');
|
|
|
+});
|
|
|
+
|
|
|
+// --- admin: account_clients_SINGLE --- //
|
|
|
+Route::prefix('/account_clients/view/{uid}')->group(function () {
|
|
|
+ Route::get('ACTION_proAllowAccess', 'account_clients_SINGLE_Controller@ACTION_proAllowAccess')->name('account_clients_SINGLE-ACTION_proAllowAccess');
|
|
|
+ Route::get('ACTION_proDenyAccess', 'account_clients_SINGLE_Controller@ACTION_proDenyAccess')->name('account_clients_SINGLE-ACTION_proDenyAccess');
|
|
|
+ Route::get('SUB_dashboard', 'account_clients_SINGLE_Controller@SUB_dashboard')->name('account_clients_SINGLE-SUB_dashboard');
|
|
|
+});
|
|
|
+
|
|
|
+// --- admin: account_clients --- //
|
|
|
+Route::prefix('/account_clients')->group(function () {
|
|
|
+ Route::get('', 'account_clients_Controller@index')->name('account_clients-index');
|
|
|
+ Route::get('view/{uid}', 'account_clients_Controller@view')->name('account_clients-view');
|
|
|
});
|