@php use \App\Helpers\Formats\FormatCurrencyHelper; @endphp {{-- Header --}} {{-- Separator --}} {{ $reservation_ticket['charges'] }} {{-- Titles --}} {{ $reservation_ticket['date'] }} {{ $reservation_ticket['description'] }} @if ($reservation->is_express) {{ $reservation_ticket['lodging_hourly_price'] }} @else {{ $reservation_ticket['lodging_nightly_price'] }} @endif Total {{-- Content --}} {{ $reservation->date_entry }} {{ $reservation_ticket['lodging_description'] }} @if ($reservation->is_express) {{ $reservation->number_hours }} {{ trans_choice($reservation_ticket['number_hours'], $reservation->number_hours) }} @elseif ($has_control_hours) {{ $reservation->number_nights }} {{ trans_choice($reservation_ticket['number_nights'], $reservation->number_nights) }}, {{ $reservation->number_hours }} {{ trans_choice($reservation_ticket['number_hours'], $reservation->number_hours) }} @else {{ $reservation->number_nights }} {{ trans_choice($reservation_ticket['number_nights'], $reservation->number_nights) }} @endif
@if ($has_pax_pricing) @php $total_pax = (int) $reservation->number_adults; if ($reservation->include_children_in_pax) $total_pax += $reservation->number_children; @endphp ({{ $total_pax }} pax) @endif {{ FormatCurrencyHelper::formatCurrency($reservation->final_price) }} {{ FormatCurrencyHelper::formatCurrency($reservation->total_price) }}