SG
public function landfills($direction = 'asc')
{
return $this->hasMany(ReportTko\Zone\Landfill::class)
->orderBy('id', $direction);
}
как мне увидеть/продебажить - какие тут Лара ключи использует?
Size: a a a
SG
public function landfills($direction = 'asc')
{
return $this->hasMany(ReportTko\Zone\Landfill::class)
->orderBy('id', $direction);
}
VY
SG
RK
VY
return Zone::with(['report.region', 'landfills', 'vehicles', 'auto_park', 'checks', 'media', 'zoneTitle'])
->withCount('landfills')
'report.landfills'
return Zone::with(['report.region', 'landfills', 'vehicles', 'auto_park', 'checks', 'media', 'zoneTitle'])
->withCount('report.landfills')
return Zone::with(['report.region', 'landfills', 'vehicles', 'auto_park', 'checks', 'media', 'zoneTitle', 'report.landfills'])
SG
return Zone::with(['report.region', 'landfills', 'vehicles', 'auto_park', 'checks', 'media', 'zoneTitle'])
->withCount('landfills')
'report.landfills'
return Zone::with(['report.region', 'landfills', 'vehicles', 'auto_park', 'checks', 'media', 'zoneTitle'])
->withCount('report.landfills')
return Zone::with(['report.region', 'landfills', 'vehicles', 'auto_park', 'checks', 'media', 'zoneTitle', 'report.landfills'])
return Zone::with(['report.landfills'])->withCount('report.landfills')
VY
return Zone::with(['report.landfills'])->withCount('report.landfills')
SG
VY
V
V
SG
SG
VY
VY
SG
VY
SG
VY