I have custom query where I get services by grouping city and select from services table only custom fields by loading there reviews:
$services = City::select('id')
->has('services')
->with([
'services:id,title',
'services.reviews'
])->get();
In this case I need to only 3 reviews to each service with reviews custom fields. For example I need from reviews table only description and rate. How I can do it in my case?