Yes, there is a very simple way. Here is an example:
Indicate your route as follows:
Route::resource("schedules/day.month.year", "ScheduleController");
The request will look like this:
/schedules/day/1/month/12/year/2014
And now you can get all three parameters in the show method of your controller or:
public function show($day, $month, $year)
source
share