group(function () { Route::patch('holiday/workflow/{holiday}/{transition}', 'HolidayWorkflowController'); Route::resource('holiday', 'HolidayResourceController'); }); // Public routes for holiday Route::get('holidays/', 'HolidayPublicController@index'); Route::get('holiday/{slug?}', 'HolidayPublicController@show');