摘要: 向单个视图传递变量 1.使用with()方法 : view('user.lists')->with('title',$title); 2.直接view()传参: view('user.lists',['title'=>$title]); 3.使用compact(): view('user.lists 阅读全文
posted @ 2018-09-06 10:42 $wanggang 阅读(1940) 评论(0) 推荐(0) 编辑
摘要: url() 通过url辅助函数(路由)生成:location.href = "{{url('user/index')}}"; 或者:location.href = "{{url::to('user/index')}}"; route() 通过别名(路由)生成,前提是在注册路由的时候要指定别名,例如: 阅读全文
posted @ 2018-09-06 09:29 $wanggang 阅读(4607) 评论(0) 推荐(0) 编辑