showing blank page when i go to some route laravel

Solutions on MaxInterview for showing blank page when i go to some route laravel by the best coders in the world

showing results for - "showing blank page when i go to some route laravel"
Juan David
18 Apr 2018
1/*  The reason behind getting a blank pages is 
2     because Route::resource will create some route with wildcards. 
3    For e.g. clinic/{clinic} which will map to show method on 
4    controller.
5    So when you make a get request to clinic/register it
6    will be mapped to this show method instead of your register method.
7
8One possibility for not getting any errors is your show 
9method does not have any code yet. Hence, a blank response.
10
11To summarize: Order in which you register your routes matters
12
13
14*/