|
@@ -44,6 +44,8 @@ Route::get("/guest/handout/{handoutClientUid}", 'GuestController@handout')->name
|
|
Route::get("/appointment-confirmation/{appointmentUid}", 'GuestController@appointmentConfirmation')->name('appointment_confirmation');
|
|
Route::get("/appointment-confirmation/{appointmentUid}", 'GuestController@appointmentConfirmation')->name('appointment_confirmation');
|
|
Route::post("/process-appointment-confirmation", 'GuestController@processAppointmentConfirmation')->name('process-appointment_confirmation');
|
|
Route::post("/process-appointment-confirmation", 'GuestController@processAppointmentConfirmation')->name('process-appointment_confirmation');
|
|
|
|
|
|
|
|
+Route::get('/ticket-download-as-pdf/{ticket}', 'TicketController@downloadAsPdf')->name('ticket-download-as-pdf');
|
|
|
|
+
|
|
Route::middleware('pro.auth')->group(function () {
|
|
Route::middleware('pro.auth')->group(function () {
|
|
|
|
|
|
//complete authentication
|
|
//complete authentication
|
|
@@ -64,6 +66,7 @@ Route::middleware('pro.auth')->group(function () {
|
|
|
|
|
|
Route::get('/unmapped-sms/{filter?}', 'HomeController@unmappedSMS')->name('unmapped-sms');
|
|
Route::get('/unmapped-sms/{filter?}', 'HomeController@unmappedSMS')->name('unmapped-sms');
|
|
|
|
|
|
|
|
+
|
|
Route::name('practice-management.')->prefix('practice-management')->group(function () {
|
|
Route::name('practice-management.')->prefix('practice-management')->group(function () {
|
|
Route::get('rates/{selectedProUid?}', 'PracticeManagementController@rates')->name('rates');
|
|
Route::get('rates/{selectedProUid?}', 'PracticeManagementController@rates')->name('rates');
|
|
Route::get('dashboard', 'PracticeManagementController@dashboard')->name('dashboard');
|
|
Route::get('dashboard', 'PracticeManagementController@dashboard')->name('dashboard');
|
|
@@ -105,6 +108,7 @@ Route::middleware('pro.auth')->group(function () {
|
|
|
|
|
|
Route::middleware('pro.auth.admin')->group(function(){
|
|
Route::middleware('pro.auth.admin')->group(function(){
|
|
Route::get('patients/view/mcp-requests/{patient?}', 'PatientController@mcpRequests')->name('patients.view.mcp-requests');
|
|
Route::get('patients/view/mcp-requests/{patient?}', 'PatientController@mcpRequests')->name('patients.view.mcp-requests');
|
|
|
|
+ Route::get('patients/view/eligible-refreshes/{patient}', 'PatientController@eligibleRefreshes')->name('patients.view.eligible-refreshes');
|
|
});
|
|
});
|
|
|
|
|
|
Route::name('patients.view.')->prefix('patients/view/{patient}')->group(function () {
|
|
Route::name('patients.view.')->prefix('patients/view/{patient}')->group(function () {
|
|
@@ -209,6 +213,9 @@ Route::middleware('pro.auth')->group(function () {
|
|
// refresh single ticket
|
|
// refresh single ticket
|
|
Route::get('/get-ticket/{ticket}', 'PatientController@getTicket');
|
|
Route::get('/get-ticket/{ticket}', 'PatientController@getTicket');
|
|
|
|
|
|
|
|
+
|
|
|
|
+ Route::get('/appointment-confirmation-history/{appointment}', 'AppointmentController@appointmentConfirmationHistory')->name('appointment-confirmation-history');
|
|
|
|
+
|
|
// 2-pane outer page housing lhs (practice management) and rhs (video call)
|
|
// 2-pane outer page housing lhs (practice management) and rhs (video call)
|
|
Route::get('/mc/{fragment?}', 'HomeController@mc')
|
|
Route::get('/mc/{fragment?}', 'HomeController@mc')
|
|
->where('fragment', '.*')
|
|
->where('fragment', '.*')
|