问答详情
源自:3-2 控制器

路由关联控制器 在加别名

Route::any('/product/info',['path'=>'CatController@info','as'=>'center']);  

 这种用法已经不支持了吗

我的不好用  版本是5.5.28 

提问者:qq_摘掉面具_04158080 2018-01-10 13:24

个回答

  • 不过是心有魔债
    2018-01-10 15:17:19

    Route::any('/product/info',['uses'=>'CatController@info','as'=>'center']);  

    path?  不是uses吗?