|
@@ -101,6 +101,7 @@ Route::middleware('pro.auth')->group(function () {
|
|
Route::get('', 'NoteController@dashboard')->name('dashboard');
|
|
Route::get('', 'NoteController@dashboard')->name('dashboard');
|
|
});
|
|
});
|
|
Route::get('sections', 'PatientController@sections')->name('sections');
|
|
Route::get('sections', 'PatientController@sections')->name('sections');
|
|
|
|
+ Route::get('handouts', 'PatientController@handouts')->name('handouts');
|
|
Route::get('flowsheets', 'PatientController@flowSheets')->name('flowsheets');
|
|
Route::get('flowsheets', 'PatientController@flowSheets')->name('flowsheets');
|
|
Route::get('settings', 'PatientController@settings')->name('settings');
|
|
Route::get('settings', 'PatientController@settings')->name('settings');
|
|
Route::get('account', 'PatientController@account')->name('account');
|
|
Route::get('account', 'PatientController@account')->name('account');
|
|
@@ -160,7 +161,7 @@ Route::middleware('pro.auth')->group(function () {
|
|
Route::get('/note/{note_uid}', 'NoteController@renderNote')->name('render-note');
|
|
Route::get('/note/{note_uid}', 'NoteController@renderNote')->name('render-note');
|
|
Route::get('/section_create_form/{note_uid}/{section_template_uid}', 'NoteController@sectionCreateForm')->name('section_create_form');
|
|
Route::get('/section_create_form/{note_uid}/{section_template_uid}', 'NoteController@sectionCreateForm')->name('section_create_form');
|
|
Route::get('/section_update_form/{section_uid}', 'NoteController@sectionUpdateForm')->name('section_update_form');
|
|
Route::get('/section_update_form/{section_uid}', 'NoteController@sectionUpdateForm')->name('section_update_form');
|
|
-
|
|
|
|
|
|
+
|
|
|
|
|
|
Route::get("/log_in_as", 'HomeController@logInAs')->name('log-in-as');
|
|
Route::get("/log_in_as", 'HomeController@logInAs')->name('log-in-as');
|
|
Route::post("/process-log_in_as", 'HomeController@processLogInAs')->name('process-log-in-as');
|
|
Route::post("/process-log_in_as", 'HomeController@processLogInAs')->name('process-log-in-as');
|