@php $lang_local = app()->getLocale() @endphp

{{__("Your Booking")}}

@php $service_translation = $service->translateOrOrigin($lang_local); @endphp

{{$service_translation->title}}

@if($service_translation->address)

{{$service_translation->address}}

@endif
@if($image_url = $service->image_url) @if(!empty($disable_lazyload)) @else {!! get_image_tag($service->image_id,'medium',['class'=>'img-responsive','alt'=>$service->title]) !!} @endif @endif
    @if($booking->start_date)
  • {{__('Start date:')}}
    {{display_date($booking->start_date)}}
  • {{__('End date:')}}
    {{display_date($booking->end_date)}}
  • {{__('Nights:')}}
    {{$booking->duration_nights}}
  • @endif @if($meta = $booking->getMeta('adults'))
  • {{__('Adults:')}}
    {{$meta}}
  • @endif @if($meta = $booking->getMeta('children'))
  • {{__('Children:')}}
    {{$meta}}
  • @endif
{{--@include('Booking::frontend/booking/checkout-coupon')--}}
    @php $rooms = \Modules\Hotel\Models\HotelRoomBooking::getByBookingId($booking->id) @endphp @if(!empty($rooms)) @foreach($rooms as $room)
  • {{$room->room->title}} * {{$room->number}}
    {{format_money($room->price * $room->number)}}
  • @endforeach @endif @php $extra_price = $booking->getJsonMeta('extra_price') @endphp @if(!empty($extra_price))
  • {{__("Extra Prices:")}}
    • @foreach($extra_price as $type)
    • {{$type['name_'.$lang_local] ?? $type['name']}}:
      {{format_money($type['total'] ?? 0)}}
    • @endforeach
  • @endif @if(!empty($booking->buyer_fees)) @endif
  • {{__("Total:")}}
    {{format_money($booking->total)}}