存取傳遞給Laravel 中視圖的資料
當嘗試在Blade 視圖中使用陣列$posts 時,您可能會遇到錯誤,指示它沒有被定義。發生這種情況是因為需要使用 with 方法將資料明確傳遞到視圖。
return View::make('blog')->with('posts', $posts);
透過使用 with 方法,您將 $posts 陣列指派給變數 posts,使其可以在 Blade 中存取觀點。然後,您可以使用 @foreach:
@foreach ($posts as $post) <!-- Your code here --> @endforeach安全地迭代它
以上是如何存取傳遞到 Laravel Blade 視圖的資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!