0
我想使用laravel框架返回多個視圖。當我返回變量時,它只通過循環一次,因此頁面上只顯示一個註釋。Laravel返回多個視圖
foreach($index_comments as $comments){
$commentComment = $comments->comment;
$index_children = NULL;
$getUser = DB::table('users')->where('id', '=', $comments->from_user_id)->get();
foreach ($getUser as $user) {
$firstName = $user->first_name;
$lastName = $user->last_name;
}
return View::make('feeds.comments')->with(array(
'firstName' => $firstName,
'lastName' => $lastName,
'commentComment' => $commentComment,
'index_children' => $index_children
));
}
我只是需要一種方式來返回多個視圖。 感謝您的幫助! Toby。
沒有「返回multiplpe意見」這樣的事情 - 你究竟想達到什麼目的?顯示每個評論的來自用戶的所有評論和名稱? – Quasdunk 2014-10-17 19:57:13
@Quasdunk是的。我的意思是我可以在技術上回應這些值,但我想嘗試使用視圖。我聽說過有關嵌套的觀點,但並不確定如何去做。 – 2014-10-17 19:59:31