- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的分类模型
namespace App;
use Illuminate\Database\Eloquent\Model;
class Category extends Model
{
public function posts()
{
return $this->belongsToMany('App\Post')->withTimestamps();
}
}
这是我的帖子模型
namespace App;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
public function categories()
{
return $this->belongsToMany('App\Category')->withTimestamps();
}
public function tags()
{
return $this->belongsToMany('App\Tag')->withTimestamps();
}
public function user()
{
return $this->belongsTo('App\User');
}
}
这是我的索引函数
public function index()
{
$posts=Post::latest()->get();
return view('admin.post.index',compact('posts'));
}
这是我的浏览页面
@foreach($posts as $post)
<tr>
<td>{{ $post->id }}</td>
<td>{{ str_limit($post->title,'10') }}</td>
<td>{{$post->categories->pivot->name}}</td>
</tr>
@endforeach
当我想回显我的类别名称时,laravel 给了我这个错误..
ErrorException (E_ERROR) Property [pivot] does not exist on this collection instance. (View: C:\xampp\htdocs\Advanced_Blog_System\resources\views\admin\post\index.blade.php)
我只需要查看类别名称我该如何解决这个问题???
最佳答案
Post 和 Category 都有多对多的关系,所以你需要另一个 foreach 用于分类;
@foreach($post->categories as $category)
{{$category->name}}
@endforeach
关于php - 在数据透视表中,我存储了 post_id 和 category_id 如何从数据透视表中获取我的帖子类别名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59603793/
我有以下 MySQL 命令: SELECT CASE WHEN pm.meta_key = 'webinar_date' AND pm.meta_value = '20190521' THEN pm.
我的 mysql 查询是: $query=('SELECT count(post_id) FROM comments where post_id='.$row['post_id']); $us
我想为新帖子创建 ID,例如 00001、00002,但是,同时我需要检索post_id来命名图片URL xxx/00001_1.jpg。那么我应该用 mysql(auto_increment) 还是
这是设置。 id ) . '">' ;?> Setting ';?> id ) . '">' ;?> Content ';?> jQuery(".rh_content[data-p
我创建了一个带有提货输入的表单,因此当用户输入德里机场作为提货位置并输入阿格拉作为投递位置时,它应该返回 post_ID = 2 但我已经使用 WHERE LIKE 进行了查询这导致所有 ID 在 p
我使用 mysqlnd 5.0.12-dev 数据库作为后端,我想返回每个 post_id 的 wp_productprofitability 中的最后一行。 我有以下设置: wp_post: +--
我正在使用 FBDialogs 共享一个链接,作为跟踪的一部分,我想将该共享帖子的 post_id 返回给服务器。 如何在成功时检索 post_id [FBDialogs presentShareDi
我正在尝试进行简单的 mysql 选择查询,我有 3 个表 post: post_id... tags: tag_id, tag_name post_tag: id_post, id_tag 然后我写
你好,我有一个 mysql 查询,它会根据状态的最大计数返回 post_id,它当前显示的结果是 POST_ID 3 Mysql 表: (`post_id`, `user_id`, `stat
谁能告诉我为什么我无法通过 post_id 从评论表中获得评论。 访问 token 是 [已编辑] post_id 是 100002553491860_419288394832940 帖子有一条评论,
所以我有不同用户的自定义帖子。 每个帖子都有以下元键: post_width , post_height以及常用数据,例如 title , description等如下图: $tags = $_POS
我有一个投票表,其中包含一个 post_id 列、一个 user_id 列和一个 vote 列。当有人为某个帖子投票时,会添加一行记录他们投票的帖子的 ID、他们的 user_id,并且 vote 列
我无法通过索引方法找到链接到特定帖子的出价。我已成功将我的出价链接到帖子(即我的出价表中有一个 post_id 列),但似乎无法“找到”它们。我目前收到错误消息“无法找到带有‘id’=”的出价 出价
我有一个类似下面的代码,我想在点击赞/评论/星时获取相应帖子的唯一post_id。 我添加了一个隐藏的输入标签来存储每个帖子的 post_id 的值,并在点击喜欢/评论/明星时尝试获取该值。但是我无法
所以我将使用带有帖子和评论的博客数据库模型的陈词滥调示例。 public class Post { public int Id { get; set; } public string Titl
我有一个评论系统,应该输入 id、idea_id、user_id、评论、数据和时间。一切似乎都有效,除了每次我发表评论时,idea_id 始终为 0。顺便说一句,一个想法基本上就是一个帖子。 我使用以
我有三个这样的表: // Posts_1 // Posts_2 // Posts_3 +----+---------+
我正在使用 laravel 5.5,我正在尝试向帖子添加评论,但在提交表单时出现以下错误 "SQLSTATE[23000]: Integrity constraint violation: 1048
WordPress 将帖子和帖子的特色图片视为两个单独的帖子,这似乎无法创建将帖子和帖子的图片 URL 放入同一行的 SELECT 查询,如下所示: post_id imageURL 100
我正在尝试使用 fb.ui 打开一个对话框,以便我的用户能够在他们的 friend 墙上发帖。我正在尝试 facebook 提供的最基本的示例: Post to Feed FB.init(
我是一名优秀的程序员,十分优秀!