{{ $company ?? 'Medical Center' }}
{{ $reportType ?? 'Report' }}
Generated: {{ $generatedAt ?? now()->format('Y-m-d H:i:s') }}

No specific template is configured for this report type. Please ensure the report data structure is valid.

@php $data = $data ?? []; @endphp @if(is_array($data) && count($data) > 0) @php $firstItem = reset($data); if (is_array($firstItem)) { $keys = array_keys($firstItem); foreach ($keys as $key) { echo ""; } } @endphp @foreach($data as $row) @if(is_array($row)) @foreach($row as $value) @endforeach @endif @endforeach
" . ucfirst(str_replace('_', ' ', $key)) . "
@if(is_numeric($value)) {{ number_format($value, 2) }} @else {{ $value ?? '-' }} @endif
@endif