I have problem with routes in Laravel, I\'m following one tutorial and we have this routes listed in web.php file
Route::get(\'/home\', \'HomeController@inde
You can't define a type on a route paramater. So Laravel is guessing that you parameter can be a Integer or even a String.
Based on that, If you try to access /blog/bin
. Laravel will try to use the route /blog/{id}
with "bin" in id param.
Here a better answer than mine : https://laracasts.com/discuss/channels/laravel/order-of-routes-being-applied/replies/149199