{{ __('reports.pdf.weekly_title') }}

{{ $report['period']['label'] ?? '' }}

{{ __('reports.pdf.fasting_days') }}
{{ $report['summary']['fasting_days_count']['completed'] ?? 0 }}/{{ $report['summary']['fasting_days_count']['total'] ?? 7 }}
{{ __('reports.pdf.avg_fasting_hours') }}
{{ $report['summary']['avg_fasting_hours'] ?? 0 }}
{{ __('reports.pdf.fasting_percentage') }}
{{ $report['summary']['fasting_percentage'] ?? 0 }}%
{{ __('reports.pdf.weight_change') }}
{{ $report['summary']['weight_change']['label'] ?? __('reports.weight_change.unavailable') }}
@if (! empty($report['commitment']['daily_status']))

{{ __('reports.pdf.daily_commitment') }}

@foreach ($report['commitment']['daily_status'] as $day) @endforeach
{{ __('reports.pdf.day') }} {{ __('reports.pdf.fasting_hours') }} {{ __('reports.pdf.status') }}
{{ $day['day_label'] }} {{ $day['fasting_hours'] ?? 0 }} {{ $day['status'] }}
@endif @if (! empty($report['health_metrics']))

{{ __('reports.pdf.health_metrics') }}

{{ __('reports.pdf.metric') }} {{ __('reports.pdf.average') }} {{ __('reports.pdf.goal') }}
{{ __('reports.pdf.water') }} {{ $report['health_metrics']['water']['average'] ?? 0 }} {{ $report['health_metrics']['water']['unit'] ?? 'L' }} {{ $report['health_metrics']['water']['goal'] ?? 0 }} {{ $report['health_metrics']['water']['unit'] ?? 'L' }}
{{ __('reports.pdf.sleep') }} {{ $report['health_metrics']['sleep']['average'] ?? '—' }} {{ $report['health_metrics']['sleep']['unit'] ?? '' }} {{ $report['health_metrics']['sleep']['goal'] ?? 0 }} {{ $report['health_metrics']['sleep']['unit'] ?? '' }}
{{ __('reports.pdf.calories') }} {{ $report['health_metrics']['calories']['average'] ?? 0 }} {{ $report['health_metrics']['calories']['unit'] ?? 'kcal' }} {{ $report['health_metrics']['calories']['goal'] ?? 0 }} {{ $report['health_metrics']['calories']['unit'] ?? 'kcal' }}
@endif @if (! empty($report['mood_log']))

{{ __('reports.pdf.mood_section') }}

@foreach ($report['mood_log'] as $entry) @endforeach
{{ __('reports.pdf.day') }} {{ __('reports.pdf.mood') }}
{{ $entry['day_label'] }} {{ $entry['mood_label'] ?? '—' }}
@endif