|
@@ -730,6 +730,12 @@ Route::prefix('/products/view/{uid}')->group(function () {
|
|
|
Route::get('SUB_versions', 'products_SINGLE_Controller@SUB_versions')->name('products_SINGLE-SUB_versions');
|
|
|
});
|
|
|
|
|
|
+// --- admin: company_pros --- //
|
|
|
+Route::prefix('/company_pros')->group(function () {
|
|
|
+ Route::get('', 'company_pros_Controller@index')->name('company_pros-index');
|
|
|
+ Route::get('view/{uid}', 'company_pros_Controller@view')->name('company_pros-view');
|
|
|
+});
|
|
|
+
|
|
|
// --- admin: company_pros_SINGLE --- //
|
|
|
Route::prefix('/company_pros/view/{uid}')->group(function () {
|
|
|
Route::get('ACTION_deactivate', 'company_pros_SINGLE_Controller@ACTION_deactivate')->name('company_pros_SINGLE-ACTION_deactivate');
|
|
@@ -739,8 +745,31 @@ Route::prefix('/company_pros/view/{uid}')->group(function () {
|
|
|
Route::get('SUB_dashboard', 'company_pros_SINGLE_Controller@SUB_dashboard')->name('company_pros_SINGLE-SUB_dashboard');
|
|
|
});
|
|
|
|
|
|
-// --- admin: company_pros --- //
|
|
|
-Route::prefix('/company_pros')->group(function () {
|
|
|
- Route::get('', 'company_pros_Controller@index')->name('company_pros-index');
|
|
|
- Route::get('view/{uid}', 'company_pros_Controller@view')->name('company_pros-view');
|
|
|
+// --- admin: pro_teams --- //
|
|
|
+Route::prefix('/pro_teams')->group(function () {
|
|
|
+ Route::get('', 'pro_teams_Controller@index')->name('pro_teams-index');
|
|
|
+ Route::get('add_new', 'pro_teams_Controller@add_new')->name('pro_teams-add_new');
|
|
|
+ Route::get('view/{uid}', 'pro_teams_Controller@view')->name('pro_teams-view');
|
|
|
+});
|
|
|
+
|
|
|
+// --- admin: pro_teams_SINGLE --- //
|
|
|
+Route::prefix('/pro_teams/view/{uid}')->group(function () {
|
|
|
+ Route::get('ACTION_updateBasic', 'pro_teams_SINGLE_Controller@ACTION_updateBasic')->name('pro_teams_SINGLE-ACTION_updateBasic');
|
|
|
+ Route::get('ACTION_deactivate', 'pro_teams_SINGLE_Controller@ACTION_deactivate')->name('pro_teams_SINGLE-ACTION_deactivate');
|
|
|
+ Route::get('ACTION_reactivate', 'pro_teams_SINGLE_Controller@ACTION_reactivate')->name('pro_teams_SINGLE-ACTION_reactivate');
|
|
|
+ Route::get('SUB_dashboard', 'pro_teams_SINGLE_Controller@SUB_dashboard')->name('pro_teams_SINGLE-SUB_dashboard');
|
|
|
+});
|
|
|
+
|
|
|
+// --- admin: pro_text_shortcuts_SINGLE --- //
|
|
|
+Route::prefix('/pro_text_shortcuts/view/{uid}')->group(function () {
|
|
|
+ Route::get('ACTION_update', 'pro_text_shortcuts_SINGLE_Controller@ACTION_update')->name('pro_text_shortcuts_SINGLE-ACTION_update');
|
|
|
+ Route::get('ACTION_remove', 'pro_text_shortcuts_SINGLE_Controller@ACTION_remove')->name('pro_text_shortcuts_SINGLE-ACTION_remove');
|
|
|
+ Route::get('SUB_dashboard', 'pro_text_shortcuts_SINGLE_Controller@SUB_dashboard')->name('pro_text_shortcuts_SINGLE-SUB_dashboard');
|
|
|
+});
|
|
|
+
|
|
|
+// --- admin: pro_text_shortcuts --- //
|
|
|
+Route::prefix('/pro_text_shortcuts')->group(function () {
|
|
|
+ Route::get('', 'pro_text_shortcuts_Controller@index')->name('pro_text_shortcuts-index');
|
|
|
+ Route::get('add_new', 'pro_text_shortcuts_Controller@add_new')->name('pro_text_shortcuts-add_new');
|
|
|
+ Route::get('view/{uid}', 'pro_text_shortcuts_Controller@view')->name('pro_text_shortcuts-view');
|
|
|
});
|