debug code for 3 item

This commit is contained in:
2025-02-25 16:40:35 +03:30
parent f2ca87d6aa
commit b5b799ee90
3 changed files with 9 additions and 5 deletions

View File

@@ -24,7 +24,9 @@ class OperatorCartableReport implements FromView, ShouldAutoSize, WithEvents, Wi
$data = $this->data;
return view('v3.Reports.RoadObservation.OperatorCartableReport', [
'data' => $data,
'data' => $this->data,
'fromDate' => $this->data['fromDate'] ?? null,
'toDate' => $this->data['toDate'] ?? null
]);
}

View File

@@ -22,7 +22,9 @@ class SupervisorCartableReport implements FromView, WithEvents, ShouldAutoSize,
$data = $this->data;
return view('v3.Reports.RoadObservation.SupervisorCartableReport', [
'data' => $data,
'data' => $this->data,
'fromDate' => $this->data['fromDate'] ?? null,
'toDate' => $this->data['toDate'] ?? null
]);
}