Jadi setelah mengutak-atik merge()
metode untuk Collections
kelas:
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;
}
Itu akan menghasilkan apa yang saya butuhkan, namun saya yakin itu bisa lebih bersih, jadi silakan mengeditnya!