|
@@ -44,6 +44,8 @@ Route::get("/guest/handout/{handoutClientUid}", 'GuestController@handout')->name
|
|
|
Route::get("/appointment-confirmation/{appointmentUid}", 'GuestController@appointmentConfirmation')->name('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 () {
|
|
|
|
|
|
//complete authentication
|
|
@@ -64,7 +66,6 @@ Route::middleware('pro.auth')->group(function () {
|
|
|
|
|
|
Route::get('/unmapped-sms/{filter?}', 'HomeController@unmappedSMS')->name('unmapped-sms');
|
|
|
|
|
|
- Route::get('/ticket-download-as-pdf/{ticket}', 'TicketController@downloadAsPdf')->name('ticket-download-as-pdf');
|
|
|
|
|
|
Route::name('practice-management.')->prefix('practice-management')->group(function () {
|
|
|
Route::get('rates/{selectedProUid?}', 'PracticeManagementController@rates')->name('rates');
|