hasOne(Country::class, 'country_id', 'id'); } /** * @return \Illuminate\Database\Eloquent\Relations\HasOne **/ public function company(): HasOne { return $this->hasOne(Company::class, 'company_id', 'id'); } }