Vì vậy, sau khi tìm hiểu xung quanh với merge()
phương thức cho Collections
lớp:
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;
}
Điều đó sẽ tạo ra những gì tôi cần, tuy nhiên, tôi tin rằng nó có thể gọn gàng hơn, vì vậy vui lòng chỉnh sửa nó!