Get Topics/Tags with published Posts only #1021
Answered
by
MimisK13
MimisK13
asked this question in
Troubleshooting
-
Hi How can I get only the published posts by topic or tag? $tags = Tag::with(['posts'])->firstWhere('slug', $slug); This also displays the drafts. Any suggestions? Thnx |
Beta Was this translation helpful? Give feedback.
Answered by
MimisK13
Mar 9, 2022
Replies: 1 comment
-
And as soon as I asked for help, I thought the following and it worked: $tags = Tag::with(['posts' => function($q){
$q->published();
}])->firstWhere('slug', $slug); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
austintoddj
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
And as soon as I asked for help, I thought the following and it worked: