return Event::with('city.companies.persons')->get();
Ако искате да изберете само определени полета от persons
таблица, използвайте това:
return Event::with(['city.companies.persons' => function ($query) {
$query->select('id', '...');
}])->get();