belongsTo(Currency::class); } public function taxes() { return $this->hasMany(Tax::class); } /** * The accounts in this country */ public function users() { return $this->hasMany(\App\User::class); } }