How to use Eloquent query builder in Laravel to get a count of related records in a Join
I am trying to use a count(..) to get the count value of matching records from a related table, using Laravel 8 (Eloquent). The idea is simply to count the number of tasks assigned to each user. I already have…