hasOne(Country::class, 'country_id', 'id'); } /** * @return hasMany */ public function currency_rates(): hasMany { return $this->hasMany(CurrencyRate::class, 'currency_id'); } }