作者:突然丶丶想你 | 来源:互联网 | 2023-09-23 13:38
我将laravel与CMS voyager一起使用,我想恢复页面数据,但无法获取。我确定名字是。
public function about()
{
$page = Page::where('slug','propos')->first();
return view('site.about',['page',$page]);
}
您正在使用$('tr.parent_row td:eq(1)').on('click',function(){
// handle it here $(this)
});
,但必须为['page',$page]
['page' => $page]
,
尝试一下
public function about(){
$page = Page::where('slug','propos')->first();
return view('site.about',compact('page'));
}
或
不要在数组中的数组中使用,
,只有我们可以写=>
记住这一点
return view('site.about',['page' => $page]);