I just started with PHP Laravel and i couldn't figure out how to create a default route.
With ASP.NET MVC you could create a default route that would point to the requested controller and action. So you don't have to create a new route for each controller & action.
Is this possible?
Something like:
Route::get('{controller}/{index}', 'HomeController@index');
The HomeController would be the default is no controller was specified and index would be the default action if no action was specified.