Så efter att ha pillat runt med merge()
metod för Collections
klass:
public static function ancestors($id)
{
$ancestors = Model::where('id', '=', $id)->get();
while ($ancestors->last()->parent_id !== null)
{
$parent = Model::where('id', '=', $ancestors->last()->parent_id)->get();
$ancestors = $ancestors->merge($parent);
}
return $ancestors;
}
Det kommer att producera det jag behövde, men jag tror att det kan bli renare, så redigera det gärna!