{{-- |-------------------------------------------------------------- | Analytics PDF report — INLINE STYLES REQUIRED HERE |-------------------------------------------------------------- | | DomPDF cannot fetch external CSS via . | Inline
@if($logoUrl) {{ $brandName }} @else {{ $brandName }} @endif
{{ __('pdf.report.exported', ['time' => $exportedAt]) }}
{{ __('pdf.report.analytics', ['app' => $appName ?? config('leadhub.branding.app_name', 'LeadHub')]) }}

{{ $reportTitle }}

{{ __('pdf.report.period', ['from' => $dateFrom, 'to' => $dateTo]) }}
@if(!empty($activeFilters))
{{ __('pdf.report.filters') }} @foreach($activeFilters as $label => $value) {{ $label }}: {{ $value }}{{ !$loop->last ? ' · ' : '' }} @endforeach
@endif
{{-- SVG charts intentionally omitted — DomPDF cannot position SVG elements, causing axis/label text to render as garbage above the table. --}} @if(count($rows) > 0) @foreach($headers as $header) @endforeach @foreach($rows as $row) @foreach($row as $cell) @endforeach @endforeach
{{ $header }}
{{ $cell }}
@else
{{ __('pdf.report.no_data') }}
@endif