@extends('athlete.layouts.app') @section('title', $plan->name) @section('content') ← بازگشت

{{ $plan->name }}

مربی: {{ $plan->coach->user->fullName() }}

@if($plan->description)

{{ $plan->description }}

@endif
@foreach($plan->days as $day)

{{ $day->label }} — مجموع کالری: {{ $day->totalCalories() }}

@foreach($day->meals as $meal)
{{ $meal->name }} @if($meal->consumption_time) ({{ $meal->consumption_time->format('H:i') }}) @endif — {{ $meal->totalCalories() }} کالری
    @foreach($meal->items as $item)
  • {{ $item->food_name }} — {{ $item->amount }} {{ $item->unit->label() }} @if($item->calories) ({{ $item->calories }} کالری) @endif @if($item->notes) — {{ $item->notes }} @endif
  • @endforeach
@endforeach
@endforeach

مواد غذایی ممنوع

مکمل‌ها

@endsection