no message

This commit is contained in:
kuaifan
2022-12-11 21:41:54 +08:00
parent 3dc8269406
commit 2c7f4837d5
3 changed files with 44 additions and 13 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Module;
use Maatwebsite\Excel\Concerns\Exportable;
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
class BillMultipleExport implements WithMultipleSheets
{
use Exportable;
protected $data = [];
public function __construct(array $data)
{
$this->data = $data;
}
public function sheets(): array
{
return $this->data;
}
}