28 lines
518 B
PHP
28 lines
518 B
PHP
<?php
|
|
|
|
namespace App\Exports;
|
|
|
|
use Maatwebsite\Excel\Concerns\Exportable;
|
|
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
|
|
class IssuesExport implements WithMultipleSheets {
|
|
use Exportable;
|
|
|
|
protected $data;
|
|
|
|
public function __construct(array $data)
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
|
|
public function sheets(): array
|
|
{
|
|
$sheets = [];
|
|
|
|
foreach ($this->data as $projectData) {
|
|
$sheets[] = new ProjectSheet($projectData);
|
|
}
|
|
|
|
return $sheets;
|
|
}
|
|
}
|