@php
$logoPath = public_path('images/logo-white-pdf.png');
$logo = is_file($logoPath) ? 'data:image/png;base64,'.base64_encode(file_get_contents($logoPath)) : null;
@endphp
@if ($highlight)
{{ $highlight['value'] }}
{{ $highlight['label'] }}
@endif
@if (! empty($chart) && \Illuminate\Support\Str::startsWith($chart, 'data:image/'))
@if (! empty($chartTitle))
{{ $chartTitle }}
@endif
@endif
@foreach ($sections as $section)
{{ $section['title'] }}
@foreach ($section['rows'] as $row)
| {{ $row[0] }} |
{{ $row[1] }} |
@endforeach
@endforeach
@if (!empty($note))
Next step
{{ $note }}
@endif