Support the ongoing development of Laravel.io →
posted 9 years ago
Eloquent
Last updated 2 years ago.
0

It sounds like you need a scope where you can sort by the joined model

public function scopeHometeam($query, $column='name', $direction = 'desc') {

return $query->whereHas('Hometeam', function ($query) use ($column, $direction) {
return $query->orderBy($column, $direction);
}
}

$matches = Match::Hometeam()->get();
0

Sign in to participate in this thread!

Eventy

Your banner here too?

quirkles quirkles Joined 1 Oct 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.