Answer the question
In order to leave comments, you need to log in
How to get all articles by author role?
Hello!
The Post and User models are in a one-to-many relationship.
There are Roles: admin, user, manager (laratrust).
How can I get all Post entries by author role like user and manager?
Something like:
Post::whereHas('user', function($query) {
$query->hasRole(['user', 'manager']);
})
->paginate(10);
"Call to undefined method Illuminate\Database\Query\Builder::hasRole()"
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question