return Event::with('city.companies.persons')->get();
Pokud chcete vybrat pouze určitá pole z persons
tabulka, použijte toto:
return Event::with(['city.companies.persons' => function ($query) {
$query->select('id', '...');
}])->get();
return Event::with('city.companies.persons')->get();
Pokud chcete vybrat pouze určitá pole z persons
tabulka, použijte toto:
return Event::with(['city.companies.persons' => function ($query) {
$query->select('id', '...');
}])->get();