belongsTo(User::class); } public function getFullNameAttribute() { return $this->first_name . ' ' . $this->last_name; } public function getStateNameAttribute() { return State::name($this->country, $this->state); } public function getCountryNameAttribute() { return Country::name($this->country); } }