{{ $workout->name }}

{{ $workout->description ?? 'Plan de entrenamiento personalizado' }}

{{ $client->name }}

@if($client->age)
{{ $client->age }}años
@endif @if($client->weight)
{{ $client->weight }}kgpeso
@endif @if($client->height)
{{ $client->height }}cmaltura
@endif @if($client->objective)
{{ ucfirst($client->objective) }}objetivo
@endif
Días de entrenamiento:
@php $allDays = [ 'monday' => 'Lunes', 'tuesday' => 'Martes', 'wednesday' => 'Miércoles', 'thursday' => 'Jueves', 'friday' => 'Viernes', 'saturday' => 'Sábado', 'sunday' => 'Domingo', ]; @endphp @foreach($allDays as $key => $label) {{ $label }} @endforeach
@foreach($exercises as $index => $exercise) @endforeach
# Ejercicio Series x Reps Descanso Notas
{{ $index + 1 }}
{{ $exercise->name }}
{{ $exercise->muscle_group }}
{{ $exercise->sets }}x{{ $exercise->reps }} {{ $exercise->rest_seconds ? $exercise->rest_seconds . 's' : '-' }} {{ $exercise->notes ?? '-' }}