gpt4 book ai didi

php - 为什么我在 Laravel View 中得到 "Undefined variable"?

转载 作者:可可西里 更新时间:2023-11-01 00:21:54 35 4
gpt4 key购买 nike

当我尝试从类别所在的表中获取数据时,出现 undefined variable :类别错误。

$posts 变量工作正常。

@if(count($posts))

@foreach($posts as $post)
@if($post->category)
<div class="{{ $post->category->name }} isotope-item">
<img src="../img/showcase/1.jpg" alt="">
<div class="disp-post">
<span class="icon"></span>
<p class="time">{{ $post->updated_at }}</p>
<h4>{{ Str::words($post->title, 3) }}</h4>
<p>{{ Str::words($post->body, 60) }}</p>
<p class="link">{{ HTML::linkRoute('posts.show', 'Read more', array($post->id)) }}</p>
</div>
</div>
@endif
@endforeach
@endif

但是当我尝试 $category:

@if(count($category))
@foreach($category as $c)
<li><a href="#" data-filter="{{ $c->name }}">Networking</a></li>
@endforeach
@endif

我得到一个错误。

我做错了什么?

这是来 self 的 PostsController

public function showcase()
{
$category = Category::all();
$posts = Post::with('category')->orderBy('updated_at')->get();
return View::make('posts.showcase', compact('posts'));
}

最佳答案

您没有将 $category 变量传递给您的 View ,您只是传递了 $posts

改变你的线路:

return View::make('posts.showcase', compact('posts'));

成为:

return View::make('posts.showcase', compact('posts', 'category'));

您的 $category 变量将可用。

关于php - 为什么我在 Laravel View 中得到 "Undefined variable"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18341009/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com