【转】Laravel 控制器 Controller 传值到 视图 View 的几种方法总结
摘要:
单个值的传递 with public function index() { $test = "测试"; return view('test.index')->with('test',$test); } view public function index() { return view('test. 阅读全文
posted @ 2020-03-08 13:57 神奇的旋风 阅读(730) 评论(0) 推荐(0) 编辑