{{ $offerData['hotel_name'] }}
{{--
{{ $offerData['hotel_name'] }}
--}}
@if ($offerData['table_option'] === 'option1') @foreach ($offerData['table_option1'] as $index => $row) @endforeach @if ($offerData['show_grand_total']) @endif
S.No Room Category Rate
(per night)
Total Rate
(per room)
{{ $index + 1 }}
{{ $row['category'] }}
@if (!empty($row['subtext']))
{{ $row['subtext'] }}
@endif
{{ $offerData['currency'] }} {!! formatPrice($row['rate']) !!}
{{ $offerData['currency'] }} {!! formatPrice($row['total_rate']) !!}
Grand Total:
{{ $offerData['currency'] }} {!! formatPrice($offerData['grand_total']) !!}
{{ $offerData['grand_total_sub_text'] ?? '' }}
@elseif($offerData['table_option'] === 'option2') @foreach ($offerData['table_option2'] as $index => $row) @endforeach @if ($offerData['show_grand_total']) @endif
S. No. Room Category No. of
Rooms
Price
(per room, per night)
Price
(per room, total stay)
Total Price
{{ $index + 1 }}
{{ $row['category'] }}
@if (!empty($row['subtext']))
{{ $row['subtext'] }}
@endif
{{ $row['room_count'] }}
{{ $offerData['currency'] }} {!! formatPrice($row['price_per_night']) !!}
{{ $offerData['currency'] }} {!! formatPrice($row['price_total_stay']) !!}
{{ $offerData['currency'] }} {!! formatPrice($row['total_price']) !!}
Grand Total:    {{ $offerData['currency'] }} {!! formatPrice($offerData['grand_total']) !!}
{{ $offerData['grand_total_sub_text'] ?? '' }}
@endif
{{-- @if (!empty($offerData['section_description'])) --}} @if (!empty($offerData['sections'])) @foreach ($offerData['sections'] as $section) @php $title = htmlspecialchars($section['title']); $description = $section['description']; // already HTML, don't encode it @endphp
{{--

{{ $offerData['section_title'] }}

{!! $offerData['section_description'] !!}
--}}

{{ $title }}

{!! $description !!}
@endforeach @endif @if (!empty($offerData['general_conditions']))

General Sales Conditions

{!! $offerData['general_conditions'] !!}
@endif