inital commit

This commit is contained in:
2024-02-01 09:53:53 +00:00
commit 9743fce12b
19771 changed files with 4230637 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Exports\RoadItems;
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
// use App\Exports\RoadItems\RoadItems;
class AllSheets implements WithMultipleSheets
{
public function __construct($fromDate = null, $toDate = null, $province = null)
{
$this->fromDate = $fromDate ?? null;
$this->toDate = $toDate ?? null;
$this->province = $province ?? null;
}
public function sheets(): array
{
return [
0 => new RoadItems($this->fromDate, $this->toDate, $this->province),
];
}
}