Więc po majstrowaniu przy merge()
metoda dla Collections
klasa:
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;
}
Dzięki temu uzyskam to, czego potrzebowałem, ale uważam, że może być bardziej czystszy, więc możesz go edytować!