@if ($logoDataUri) Smart Carb Nutritecs @endif

{{ __('onsite.clinic_name') }}

{{ __('onsite.clinic_tagline') }}

{{ __('onsite.summary_notes') }}

@if ($consultation->dietType) @endif @if ($consultation->tdee || $consultation->ibw_devine) @endif @if ($consultation->carbs_g || $consultation->protein_g || $consultation->fat_g) @endif
{{ __('onsite.visitor_name') }} {{ $consultation->patient_name ?? '—' }} {{ __('onsite.gender') }} {{ $consultation->gender_label }}
{{ __('onsite.date_of_birth') }} {{ $consultation->date_of_birth->format('Y-m-d') }} ({{ $consultation->age }} {{ __('onsite.years') }}) {{ __('onsite.activity_level') }} {{ $consultation->activity_label }}
{{ __('onsite.weight_kg') }} {{ $consultation->weight }} kg {{ __('onsite.height_cm') }} {{ $consultation->height }} cm
{{ __('onsite.selected_diet') }} {{ $consultation->dietType->name }}
{{ __('onsite.eer_adjusted') }} {{ $consultation->tdee ? number_format($consultation->tdee, 0) . ' kcal' : '—' }} {{ __('onsite.ibw_devine') }} {{ $consultation->ibw_devine ? number_format($consultation->ibw_devine, 1) . ' kg' : '—' }}
{{ __('onsite.macro_carbs') }} {{ number_format($consultation->carbs_g ?? 0, 1) }} g {{ __('onsite.macro_protein') }} {{ number_format($consultation->protein_g ?? 0, 1) }} g
{{ __('onsite.macro_fat') }} {{ number_format($consultation->fat_g ?? 0, 1) }} g
@if ($consultation->notes)
{{ $consultation->notes }}
@endif

{{ __('onsite.pdf_meal_list_title') }}

@forelse ($mealPreview as $meal => $data)
{{ __('onsite.' . $meal) }}
@if ($data['items']->isEmpty())
{{ __('onsite.no_components_selected') }}
@else @foreach ($data['items'] as $item) @endforeach
{{ $item['name'] }} {{ number_format($item['weight'] ?? 100, 0) }} {{ $item['unit'] ?? 'g' }}
{{ number_format($data['totals']['kcal'], 0) }} kcal  ·  {{ __('onsite.carbohydrates') }}: {{ number_format($data['totals']['carbs'], 1) }} g  ·  {{ __('onsite.protein') }}: {{ number_format($data['totals']['protein'], 1) }} g  ·  {{ __('onsite.components.fat') }}: {{ number_format($data['totals']['fat'], 1) }} g
@endif
@empty

{{ __('onsite.no_data') }}

@endforelse