|
@@ -98,6 +98,7 @@ Route::prefix('/clients/view/{uid}')->group(function () {
|
|
|
Route::get('SUB_client_sms_numbers', 'clients_SINGLE_Controller@SUB_client_sms_numbers')->name('clients_SINGLE-SUB_client_sms_numbers');
|
|
|
Route::get('SUB_client_documents', 'clients_SINGLE_Controller@SUB_client_documents')->name('clients_SINGLE-SUB_client_documents');
|
|
|
Route::get('SUB_audit_log', 'clients_SINGLE_Controller@SUB_audit_log')->name('clients_SINGLE-SUB_audit_log');
|
|
|
+ Route::get('SUB_bdt_devices', 'clients_SINGLE_Controller@SUB_bdt_devices')->name('clients_SINGLE-SUB_bdt_devices');
|
|
|
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');
|
|
|
Route::get('ACTION_add_new_client_pro_access', 'clients_SINGLE_Controller@ACTION_add_new_client_pro_access')->name('clients_SINGLE-ACTION_add_new_client_pro_access');
|
|
@@ -107,6 +108,7 @@ Route::prefix('/clients/view/{uid}')->group(function () {
|
|
|
Route::get('ACTION_add_new_action_item', 'clients_SINGLE_Controller@ACTION_add_new_action_item')->name('clients_SINGLE-ACTION_add_new_action_item');
|
|
|
Route::get('ACTION_add_new_erx_action_item', 'clients_SINGLE_Controller@ACTION_add_new_erx_action_item')->name('clients_SINGLE-ACTION_add_new_erx_action_item');
|
|
|
Route::get('ACTION_add_new_client_document', 'clients_SINGLE_Controller@ACTION_add_new_client_document')->name('clients_SINGLE-ACTION_add_new_client_document');
|
|
|
+ Route::get('ACTION_add_new_client_bdt_device', 'clients_SINGLE_Controller@ACTION_add_new_client_bdt_device')->name('clients_SINGLE-ACTION_add_new_client_bdt_device');
|
|
|
});
|
|
|
|
|
|
// --- pro: notes --- //
|
|
@@ -496,6 +498,13 @@ Route::prefix('/client_documents/view/{uid}')->group(function () {
|
|
|
Route::get('SUB_dashboard', 'client_documents_SINGLE_Controller@SUB_dashboard')->name('client_documents_SINGLE-SUB_dashboard');
|
|
|
});
|
|
|
|
|
|
+// --- admin: bdt_devices --- //
|
|
|
+Route::prefix('/bdt_devices')->group(function () {
|
|
|
+ Route::get('', 'bdt_devices_Controller@index')->name('bdt_devices-index');
|
|
|
+ Route::get('add_new', 'bdt_devices_Controller@add_new')->name('bdt_devices-add_new');
|
|
|
+ Route::get('view/{uid}', 'bdt_devices_Controller@view')->name('bdt_devices-view');
|
|
|
+});
|
|
|
+
|
|
|
// --- admin: bdt_devices_SINGLE --- //
|
|
|
Route::prefix('/bdt_devices/view/{uid}')->group(function () {
|
|
|
Route::get('ACTION_deactivate', 'bdt_devices_SINGLE_Controller@ACTION_deactivate')->name('bdt_devices_SINGLE-ACTION_deactivate');
|
|
@@ -504,9 +513,17 @@ Route::prefix('/bdt_devices/view/{uid}')->group(function () {
|
|
|
Route::get('SUB_dashboard', 'bdt_devices_SINGLE_Controller@SUB_dashboard')->name('bdt_devices_SINGLE-SUB_dashboard');
|
|
|
});
|
|
|
|
|
|
-// --- admin: bdt_devices --- //
|
|
|
-Route::prefix('/bdt_devices')->group(function () {
|
|
|
- Route::get('', 'bdt_devices_Controller@index')->name('bdt_devices-index');
|
|
|
- Route::get('add_new', 'bdt_devices_Controller@add_new')->name('bdt_devices-add_new');
|
|
|
- Route::get('view/{uid}', 'bdt_devices_Controller@view')->name('bdt_devices-view');
|
|
|
+// --- admin: client_bdt_devices_SINGLE --- //
|
|
|
+Route::prefix('/client_bdt_devices/view/{uid}')->group(function () {
|
|
|
+ Route::get('ACTION_deactivate', 'client_bdt_devices_SINGLE_Controller@ACTION_deactivate')->name('client_bdt_devices_SINGLE-ACTION_deactivate');
|
|
|
+ Route::get('ACTION_reactivate', 'client_bdt_devices_SINGLE_Controller@ACTION_reactivate')->name('client_bdt_devices_SINGLE-ACTION_reactivate');
|
|
|
+ Route::get('ACTION_update', 'client_bdt_devices_SINGLE_Controller@ACTION_update')->name('client_bdt_devices_SINGLE-ACTION_update');
|
|
|
+ Route::get('SUB_dashboard', 'client_bdt_devices_SINGLE_Controller@SUB_dashboard')->name('client_bdt_devices_SINGLE-SUB_dashboard');
|
|
|
+});
|
|
|
+
|
|
|
+// --- admin: client_bdt_devices --- //
|
|
|
+Route::prefix('/client_bdt_devices')->group(function () {
|
|
|
+ Route::get('', 'client_bdt_devices_Controller@index')->name('client_bdt_devices-index');
|
|
|
+ Route::get('add_new', 'client_bdt_devices_Controller@add_new')->name('client_bdt_devices-add_new');
|
|
|
+ Route::get('view/{uid}', 'client_bdt_devices_Controller@view')->name('client_bdt_devices-view');
|
|
|
});
|