return Event::with('city.companies.persons')->get();
Jika Anda hanya ingin memilih bidang tertentu dari persons
tabel, gunakan ini:
return Event::with(['city.companies.persons' => function ($query) {
$query->select('id', '...');
}])->get();