Takže poté, co jsem si pohrál s merge()
metoda pro Collections
třída:
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;
}
To vytvoří to, co jsem potřeboval, ale věřím, že to může být čistší, takže to prosím upravte!