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