$view = view('greetings', $data); $data数组为什么不能在模板中使用,错误提示data未定义,这个到底该怎么用,求指教

$list = DB::table('goods_class')->get();
$view = view('admin.goodsmanagement',$list);
return view('admin.goodsmanagement')->with('id',2);

这是我的代码,$list不为空,可以遍历,但是在模板中提示如下错误
ErrorException in 9f272780584bd0ab85ccc48a477f7717 line 68:
Undefined variable: list (View: D:\WWW\chinapost\resources\views\admin\goodsmanagement.blade.php)
已邀请:

琳琳

赞同来自: yuanlaini1

return view('admin.goodsmanagement')->with('id',2)->with('list',$list);

把你的第二行和第三行,改成上一行

yuanlaini1

赞同来自:

谢谢了,这样可以:)

要回复问题请先登录注册