*/ protected $fillable = [ 'name', ]; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'id' => 'integer', 'language_codes' => 'array', ]; public function cities(): HasMany { return $this->hasMany(City::class); } }