Это код, который у меня есть:
public function divisions(Request $request)
{
$q = $request->get('q');
return Division::where('name', 'like', "%$q%")
->with(['nation' => function($query) {
$query->select('id', 'name');
}])->simplePaginate();
}
И вернуть следующее:
{
"id": 1,
"name": "1",
"classify": 1,
"nation_id": 1,
"user_id": 1,
"created_at": "2019-05-08 09:00:00",
"updated_at": "2019-05-08 09:00:00",
"nation": {
"id": 1,
"name": "France"
}
}
Но мне нужно следующее.Что я могу сделать, чтобы вернуть только следующее?
{
"id": 1,
"name": "1",
"nation": "France"
}
Спасибо