return Event::with('city.companies.persons')->get();
persons
から特定のフィールドのみを選択する場合 テーブル、これを使用してください:
return Event::with(['city.companies.persons' => function ($query) {
$query->select('id', '...');
}])->get();
return Event::with('city.companies.persons')->get();
persons
から特定のフィールドのみを選択する場合 テーブル、これを使用してください:
return Event::with(['city.companies.persons' => function ($query) {
$query->select('id', '...');
}])->get();