@php
$locale = app()->getLocale();
$isRtl = $locale === 'ar';
$dir = $isRtl ? 'rtl' : 'ltr';
@endphp
{{ __('water_quality.report_title') }} - {{ $system->getTranslation('name', $locale) }}
{{-- Google Fonts for Arabic Support --}}
{{-- Print Bar --}}
@include('reports.partials.report-body', [
'report' => $report,
'system' => $system,
'templateStructure' => $templateStructure,
'reportData' => $reportData,
'headerSchema' => $headerSchema,
'approvalSchema' => $approvalSchema,
'standardName' => $standardName ?? null,
'hasRemarks' => $hasRemarks ?? true,
'remarks' => $remarks ?? '',
'approval' => $approval ?? [],
])