return Event::with('city.companies.persons')->get();
Wenn Sie nur bestimmte Felder aus den persons
auswählen möchten verwenden Sie diese Tabelle:
return Event::with(['city.companies.persons' => function ($query) {
$query->select('id', '...');
}])->get();