📜  当我去一些路线 laravel 时显示空白页 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:58.335000             🧑  作者: Mango

代码示例1
/*  The reason behind getting a blank pages is 
     because Route::resource will create some route with wildcards. 
    For e.g. clinic/{clinic} which will map to show method on 
    controller.
    So when you make a get request to clinic/register it
    will be mapped to this show method instead of your register method.

One possibility for not getting any errors is your show 
method does not have any code yet. Hence, a blank response.

To summarize: Order in which you register your routes matters


*/