@php use App\model\core\Common; $total = 0; @endphp @include('header')

Su Reserva se ha realizado con éxito.

@if ($viaje->noches > 0) @endif @foreach($selectedSeats as $seat) @if ($viaje->noches > 0) @php $tipo_hab = ""; if (isset($roomSelected->id)) { if ($roomSelected->id == 4 || $roomSelected->id == 5) { $tipo_hab = ' ('.$reserva->twin_matrimonial.')'; } } @endphp @endif @php $total += $seat->precio_opcional !== null ? $seat->precio_opcional : $viaje->precio; @endphp @endforeach
Asiento Pasajero DNI LocalidadTipo HabitaciónMonto
{{ $seat->nro_asiento }} {{ $seat->pasajero->apellido }}, {{ $seat->pasajero->nombre }} {{ $seat->pasajero->dni }} {{ $seat->pasajero->localidad }}{{ $roomSelected ? $roomSelected->nombre.$tipo_hab : '' }}{{ Common::getCurrencySymbol($viaje->moneda) }} {{ Common::intFormatMoney($seat->precio_opcional !== null ? $seat->precio_opcional : $viaje->precio) }} Cuotas
noches > 0) colspan="5" @else colspan="4" @endif style="text-align: right">TOTAL {{ Common::getCurrencySymbol($viaje->moneda) }} {{ Common::intFormatMoney($total) }}
@include('footer')