Первичные рекурсивные отношения термина
class Item extends Model {
protected $with = ['children'];
public function children() {
$this->hasMany(App\Items::class, 'parent_id', 'id');
}
}
Angry Albatross