Recent Activity

参考控制器文档:https://xueyuanjun.com/post/2816.html

10 years ago 评论 HTTP 路由

?后面肯定是通过URL传入了 不会定义在路由里面 Request通过依赖注入的方式注入到动作中: public function profile(Request $request,$nam...

10 years ago 评论 HTTP 路由

Route::get('user/{name?},'UserController@profile');

10 years ago 评论 HTTP 路由

刚测试了下 Laravel 5.2引入了中间件组的概念 你得这么定义才行: Route::group(['middleware'=>'web'],function(){ R...

10 years ago 评论 Session

乱讲 官方没有layouts了

10 years ago 评论 Blade 模板引擎