I am moving from Codeigniter to Laravel so whenever I can't find anything in Laravel I look back to codeigniter, Laravel has a pretty intense route mechanism. In Codeigniter there are some reserved routes like
$route['default_controller'] = 'controller_name';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
Are there any reserved routes in Laravel, the one I assume is
Route::Auth();
via Malik Mudassar