|
@@ -758,6 +758,13 @@ Route::prefix('/pro_teams/view/{uid}')->group(function () {
|
|
|
Route::get('SUB_dashboard', 'pro_teams_SINGLE_Controller@SUB_dashboard')->name('pro_teams_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');
|
|
|
+});
|
|
|
+
|
|
|
// --- 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');
|
|
@@ -765,9 +772,19 @@ Route::prefix('/pro_text_shortcuts/view/{uid}')->group(function () {
|
|
|
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');
|
|
|
+// --- admin: note_template_section_templates --- //
|
|
|
+Route::prefix('/note_template_section_templates')->group(function () {
|
|
|
+ Route::get('', 'note_template_section_templates_Controller@index')->name('note_template_section_templates-index');
|
|
|
+ Route::get('view/{uid}', 'note_template_section_templates_Controller@view')->name('note_template_section_templates-view');
|
|
|
+});
|
|
|
+
|
|
|
+// --- admin: note_template_section_templates_SINGLE --- //
|
|
|
+Route::prefix('/note_template_section_templates/view/{uid}')->group(function () {
|
|
|
+ Route::get('ACTION_updateHeading', 'note_template_section_templates_SINGLE_Controller@ACTION_updateHeading')->name('note_template_section_templates_SINGLE-ACTION_updateHeading');
|
|
|
+ Route::get('SUB_dashboard', 'note_template_section_templates_SINGLE_Controller@SUB_dashboard')->name('note_template_section_templates_SINGLE-SUB_dashboard');
|
|
|
+});
|
|
|
+
|
|
|
+// --- admin: isms --- //
|
|
|
+Route::prefix('/isms')->group(function () {
|
|
|
+ Route::get('', 'isms_Controller@index')->name('isms-index');
|
|
|
});
|