belongsTo(User::class)->withTrashed(); } public function country() { return $this->belongsTo(Country::class)->withTrashed(); } public function state() { return $this->belongsTo(State::class)->withTrashed(); } public function city() { return $this->belongsTo(City::class)->withTrashed(); } }