return Event::with('city.companies.persons')->get();
यदि आप persons
. में से केवल कुछ निश्चित क्षेत्रों का चयन करना चाहते हैं तालिका, इसका उपयोग करें:
return Event::with(['city.companies.persons' => function ($query) {
$query->select('id', '...');
}])->get();