You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
341 B
22 lines
341 B
<?php
|
|
|
|
namespace App\Exports;
|
|
|
|
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
|
|
|
|
class MultiSheetExport implements WithMultipleSheets
|
|
{
|
|
protected $sheets = [];
|
|
|
|
public function __construct(array $sheets)
|
|
{
|
|
$this->sheets = $sheets;
|
|
}
|
|
|
|
public function sheets(): array
|
|
{
|
|
return $this->sheets;
|
|
}
|
|
}
|
|
|