我正试图从我的laravel中获取多对多的关系。
我有帖子和标签。
因此,有可能存在尚未连接到帖子的标签。我怎样才能从数据库中获取这些内容?
$tags = Tag::with('posts')->where('posts', [])->get();
$tags = Tag::with('posts')->where('posts', '')->get();
$tags = Tag::with('posts')->wherePosts('')->get();
$tags = Tag::with('posts')->wherePosts([])->get();
那些不起作用。还有其他方法吗?如果我回来了
$tags = Tag::with('posts')->get();
我可以看到posts = []的那些,但我现在不知道如何获取它们。
感谢。
答案 0 :(得分:1)