group(function () { Route::patch('appointment/actions/{action}', 'AppointmentActionsController'); Route::patch('appointment/action/{appointment}/{action}', 'AppointmentActionController'); Route::resource('appointment', 'AppointmentResourceController'); }); // Public routes for appointment Route::get('appointments/', 'AppointmentPublicController@index'); Route::get('appointment/{slug?}', 'AppointmentPublicController@show');