'boolean', 'is_elective' => 'boolean', // 移除 array cast,直接使用 JSON 字符串 ]; public function textbook() { return $this->belongsTo(Textbook::class); } public function parent() { return $this->belongsTo(self::class, 'parent_id'); } public function children() { return $this->hasMany(self::class, 'parent_id')->orderBy('sort_order'); } }