@if($form->object->tab !== 'entrada-pedido') Anterior @endif
@if($form->object->tab !== 'resumen') Siguiente @endif

1. Poda y clasificación

Días laborables: {{$this->form->dias_laborables_poda}}
Fecha inicio: {{\Carbon\Carbon::create($this->form->fecha_inicio_poda)->format('d-m-Y')}}
Fecha fin: {{\Carbon\Carbon::create($this->form->fecha_fin_poda)->format('d-m-Y')}}

2. Tutoración

Días laborables: {{$this->form->dias_laborables_tutoracion}}
Fecha inicio: {{\Carbon\Carbon::create($this->form->fecha_inicio_tutoracion)->format('d-m-Y')}}
Fecha fin: {{\Carbon\Carbon::create($this->form->fecha_fin_tutoracion)->format('d-m-Y')}}

3. Envasar, cerrar, sacar y paletizar (inicial)

@php $orderPot = $form->object->orderPots->first(); $potType = $orderPot?->pot?->pot; @endphp @if($potType === '7x7')
@elseif($potType === '9x9')
@elseif($potType === 'paper-pot')
@endif
@if($potType == '7x7')
@error('totalCajas')
{!! $message !!}
@enderror
@elseif($potType == '9x9')
@error('totalCajas')
{!! $message !!}
@enderror
@elseif($potType == 'paper-pot')
@error('totalCajas')
{!! $message !!}
@enderror
@endif
Días para envasado inicial:
@for($i = 0; $i < $this->form->dias_envasado_envasar_inicial; $i++)
@error('diasEnvasadoInicial.' . $i)

{!! $message !!}

@enderror
@endfor

4. Preparar planta

Días laborables: {{$this->form->dias_laborables_preparar_planta}}
Fecha inicio: {{\Carbon\Carbon::create($this->form->fecha_inicio_preparar_planta)->format('d-m-Y')}}
Fecha fin: {{\Carbon\Carbon::create($this->form->fecha_fin_preparar_planta)->format('d-m-Y')}}

3. Envasar, cerrar, sacar y paletizar (final)

@php $orderPot = $form->object->orderPots->first(); $potType = $orderPot?->pot?->pot; @endphp @if($potType === '7x7')
@elseif($potType === '9x9')
@elseif($potType === 'paper-pot')
@endif
@if($potType == '7x7')
@elseif($potType == '9x9')
@elseif($potType == 'paper-pot')
@endif
Días para envasado final:
@for($i = 0; $i < $this->form->dias_envasado_envasar_final; $i++)
@error('diasEnvasadoFinal.' . $i)

{!! $message !!}

@enderror
@endfor