return Event::with('city.companies.persons')->get();
Nếu bạn chỉ muốn chọn một số trường nhất định từ persons
bảng, sử dụng cái này:
return Event::with(['city.companies.persons' => function ($query) {
$query->select('id', '...');
}])->get();