belongsTo(State::class, 'state_id'); } function country(){ return $this->belongsTo(Country::class, 'country_id'); } function postal(){ return $this->hasMany(Postal::class, 'city_id'); } }