Files
onboard/app/Exports/ReportPageExport.php
brusnitsyn fd0e6ee817 Добавлено формирование отчета
И индикатор реанимации
2026-04-24 16:44:58 +09:00

24 lines
534 B
PHP

<?php
namespace App\Exports;
use App\Exports\Sheets\ArraySheetExport;
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
class ReportPageExport implements WithMultipleSheets
{
public function __construct(
private readonly array $summaryRows,
private readonly array $patientRows
) {}
public function sheets(): array
{
return [
new ArraySheetExport('Сводка', $this->summaryRows),
new ArraySheetExport('Пациенты', $this->patientRows),
];
}
}