return Event::with('city.companies.persons')->get();
Om du bara vill välja vissa fält från persons
tabell, använd detta:
return Event::with(['city.companies.persons' => function ($query) {
$query->select('id', '...');
}])->get();
return Event::with('city.companies.persons')->get();
Om du bara vill välja vissa fält från persons
tabell, använd detta:
return Event::with(['city.companies.persons' => function ($query) {
$query->select('id', '...');
}])->get();