1

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

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

2 回答 2

1

我认为这会做到:

return View::make('nests.show',array('nests'=>$nests,'notes'=>$notes));

于 2013-05-11T16:14:42.187 回答
0

我用了这段代码

return View::make('myviewfolder.myview', compact('view1','view2','viewN'));

我正在使用 PHP 5.5

这是有关紧凑功能的信息

PHP 紧凑函数

于 2014-08-03T02:58:08.380 回答