Модуль отчетов

This commit is contained in:
brusnitsyn
2026-06-21 23:40:55 +09:00
parent f163b95663
commit bd2cc24b98
27 changed files with 2781 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Services\Reports;
readonly class ReportPayload
{
/**
* @param array<string,string> $meta пары "показатель => значение" для шапки отчёта
* @param ReportSection[] $sections
*/
public function __construct(
public string $title,
public array $meta,
public array $sections,
) {}
}