*/ protected function casts(): array { return [ 'deleted_at' => 'datetime', ]; } protected $fillable = ['name', 'short_code', 'phone_code']; /** * @return HasMany */ public function currencies(): HasMany { return $this->HasMany(Currency::class, 'country_id', 'id'); } }