How to organize routing on laravel? For example, when I do this:
Route::get('/{url}', 'Controller@index')
I easily open links like site.com/url And what if I need to specifically specify the route for example
Route::get('/page', 'Page@index')
How to make it so that it does not conflict with the first route? After all, in fact it is the same