Mudassar Khani
Mudassar Khani

Reputation: 1479

Reserved Routes in Laravel

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();

Upvotes: 0

Views: 304

Answers (1)

Dwight
Dwight

Reputation: 12480

There are no reserved routes in Laravel, you just define the ones you want.

Route::auth() just sets up the required routes for the included authentication - if you're not using them then you don't need to define them.

Upvotes: 1

Related Questions