laravel orderby in wheregas code example
Example: laravel OrderBy on Eloquent whereHas relationship
$counties = County::whereHas('items', function ($query) {
$query->where('approved', 1);
})->orderBy('name')->get();
$counties = County::whereHas('items', function ($query) {
$query->where('approved', 1);
})->orderBy('name')->get();