'array', 'aSchemaPro' => 'array', ]; }// 我希望查询的时候忽略这个设置 protected static function booted(): void { static::deleting(function ($oArticle) { $oArticle->oImages()->get()->each(function ($oImage) { $oImage->delete(); }); }); } public function oSubject(): MorphTo { return $this->morphTo('oSubject'); } public function oImages(): MorphMany { return $this->morphMany(UploadImages::class, 'oImageable'); } }