return [
'id' => $this->id,
'name' => $this->name,
'country' => $this->country->eng_name
];
$user->update($request->all())
$user->update('[country_id'=>$country_id]);
return [
// Отношения
'country' => new CountryResource($this->country)
];
User::with('country')->get();