Información sobre transporte privado para tus invitados

@php $transportCount = 0; // Contar cuántos transportes hay foreach($form as $key => $value) { if (preg_match('/^transportTitle(\d+)$/', $key, $matches)) { $transportCount = max($transportCount, (int)$matches[1] + 1); } } if ($transportCount === 0) $transportCount = 1; // Al menos uno por defecto @endphp @for($i = 0; $i < $transportCount; $i++)
Transporte {{ $i + 1 }}
@if($i > 0) @endif
@endfor