'boolean', 'is_oem' => 'boolean', 'specifications' => 'array', 'equivalent_parts' => 'array', ]; protected static function booted(): void { } public function business() { return $this->belongsTo(Business::class); } public function documents() { return $this->morphMany(AssetDocument::class, 'documentable')->orderBy('sort_order'); } }