@php $logoPath = public_path('assets/img/logo.png'); if (! file_exists($logoPath)) { $logoPath = public_path('assetss/images/logo.png'); } $logoData = file_exists($logoPath) ? 'data:image/png;base64,'.base64_encode(file_get_contents($logoPath)) : null; @endphp
|
@if($logoData)
|
{{ __('admin.report_header_university') }}
{{ __('admin.report_header_system') }}
{{ $title ?? __('admin.reports') }}
@if(!empty($subtitle))
{{ $subtitle }}
@endif
|
{{ __('admin.report_generated_at') }}:
{{ now()->format('Y-m-d H:i') }}
{{ __('admin.generated_by_system') }}
|