Laravel 4对视图的多重绑定

时间:2013-05-11 15:48:20

标签: laravel laravel-4

将多个结果绑定到视图的最佳方法是什么?以下不起作用,但它捕获了我的逻辑:

   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'));
}

2 个答案:

答案 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

以下是紧凑功能的信息

PHP Compact Function