*/ use HasFactory, LogsModelActivity; protected $fillable = [ 'category', 'name', 'simplified', 'phonetic_abbr', 'pinyin_abbr', 'strokes_abbr', 'enable', ]; protected function casts(): array { return [ 'category' => \App\Enums\ArtistCategory::class, ]; } }