I have 2 models in my app:
1. Customer.php
2. Car.php
Now I would like to run a query that returns all customers that h
Have you tried this ?
$input = 2; $customers = Customer::whereHas("cars", function($query) use ($input) { $query->where(DB::raw("count(cars.id)"),"<",DB::raw($input)) })->get();