|
@@ -94,6 +94,8 @@ Route::prefix('/clients/view/{uid}')->group(function () {
|
|
|
Route::get('SUB_action_items', 'clients_SINGLE_Controller@SUB_action_items')->name('clients_SINGLE-SUB_action_items');
|
|
|
Route::get('SUB_erx', 'clients_SINGLE_Controller@SUB_erx')->name('clients_SINGLE-SUB_erx');
|
|
|
Route::get('SUB_mcp_updates', 'clients_SINGLE_Controller@SUB_mcp_updates')->name('clients_SINGLE-SUB_mcp_updates');
|
|
|
+ Route::get('SUB_client_sms', 'clients_SINGLE_Controller@SUB_client_sms')->name('clients_SINGLE-SUB_client_sms');
|
|
|
+ Route::get('SUB_client_sms_numbers', 'clients_SINGLE_Controller@SUB_client_sms_numbers')->name('clients_SINGLE-SUB_client_sms_numbers');
|
|
|
Route::get('SUB_audit_log', 'clients_SINGLE_Controller@SUB_audit_log')->name('clients_SINGLE-SUB_audit_log');
|
|
|
Route::get('ACTION_add_new_measurement', 'clients_SINGLE_Controller@ACTION_add_new_measurement')->name('clients_SINGLE-ACTION_add_new_measurement');
|
|
|
Route::get('ACTION_add_new_client_info_line', 'clients_SINGLE_Controller@ACTION_add_new_client_info_line')->name('clients_SINGLE-ACTION_add_new_client_info_line');
|
|
@@ -441,6 +443,13 @@ Route::prefix('/note_templates/view/{uid}')->group(function () {
|
|
|
Route::get('ACTION_add_new_note_template_section_template', 'note_templates_SINGLE_Controller@ACTION_add_new_note_template_section_template')->name('note_templates_SINGLE-ACTION_add_new_note_template_section_template');
|
|
|
});
|
|
|
|
|
|
+// --- admin: invitations --- //
|
|
|
+Route::prefix('/invitations')->group(function () {
|
|
|
+ Route::get('', 'invitations_Controller@index')->name('invitations-index');
|
|
|
+ Route::get('add_new', 'invitations_Controller@add_new')->name('invitations-add_new');
|
|
|
+ Route::get('view/{uid}', 'invitations_Controller@view')->name('invitations-view');
|
|
|
+});
|
|
|
+
|
|
|
// --- admin: invitations_SINGLE --- //
|
|
|
Route::prefix('/invitations/view/{uid}')->group(function () {
|
|
|
Route::get('ACTION_deactivate', 'invitations_SINGLE_Controller@ACTION_deactivate')->name('invitations_SINGLE-ACTION_deactivate');
|
|
@@ -452,9 +461,14 @@ Route::prefix('/invitations/view/{uid}')->group(function () {
|
|
|
Route::get('SUB_dashboard', 'invitations_SINGLE_Controller@SUB_dashboard')->name('invitations_SINGLE-SUB_dashboard');
|
|
|
});
|
|
|
|
|
|
-// --- admin: invitations --- //
|
|
|
-Route::prefix('/invitations')->group(function () {
|
|
|
- Route::get('', 'invitations_Controller@index')->name('invitations-index');
|
|
|
- Route::get('add_new', 'invitations_Controller@add_new')->name('invitations-add_new');
|
|
|
- Route::get('view/{uid}', 'invitations_Controller@view')->name('invitations-view');
|
|
|
+// --- admin: client_smses_SINGLE --- //
|
|
|
+Route::prefix('/client_smses/view/{uid}')->group(function () {
|
|
|
+ Route::get('ACTION_assignIncomingSmsToClient', 'client_smses_SINGLE_Controller@ACTION_assignIncomingSmsToClient')->name('client_smses_SINGLE-ACTION_assignIncomingSmsToClient');
|
|
|
+ Route::get('SUB_dashboard', 'client_smses_SINGLE_Controller@SUB_dashboard')->name('client_smses_SINGLE-SUB_dashboard');
|
|
|
+});
|
|
|
+
|
|
|
+// --- admin: client_smses --- //
|
|
|
+Route::prefix('/client_smses')->group(function () {
|
|
|
+ Route::get('', 'client_smses_Controller@index')->name('client_smses-index');
|
|
|
+ Route::get('view/{uid}', 'client_smses_Controller@view')->name('client_smses-view');
|
|
|
});
|