*/ protected function casts(): array { return [ 'deleted_at' => 'datetime', ]; } /** * @return HasOne */ public function country(): HasOne { return $this->hasOne(Country::class, 'country_id', 'id'); } }