将多个结果绑定到视图的最佳方法是什么?以下不起作用,但它捕获了我的逻辑:
public function show($id)
{
$nests = Nest::with('user')->find($id);
$notes = Note::with('nest')->where('nest_id', '=', $id);
return View::make('nests.show', compact('nests', 'notes'));
}
答案 0 :(得分:1)
我认为这样做会:
return View::make('nests.show',array('nests'=>$nests,'notes'=>$notes));
答案 1 :(得分:0)
我使用了这段代码
return View::make('myviewfolder.myview', compact('view1','view2','viewN'));
我使用的是PHP 5.5
以下是紧凑功能的信息