This commit is contained in:
amirghasempoor
2026-06-14 14:13:44 +03:30
parent 75c649c48e
commit ab9838c1bc
2 changed files with 20 additions and 13 deletions

View File

@@ -18,14 +18,16 @@ class machineReport implements FromView, ShouldAutoSize, WithDrawings, WithEvent
}
public function view(): View
{ $exportRows = [];
{
$exportRows = [];
foreach ($this->data as $r) {
$exportRows[] = [
'city_name' => $r->c_name ?? '',
'province_name' => $r->p_name ?? '',
'machine_id' => $r->c_name ?? '',
'machine_code' => $r->machine_code ?? '',
'car_name' => $r->car_name ?? '',
'missions' => $r->missions ?? 0,
'distance' => (int) ($r->distance ?? 0),
'func' => (int) ($r->func ?? 0),
];
}