@extends('frontend.layouts.master2') @section('title') Confirm Booking @endsection @section('main-content') @include('frontend.layouts.notification')
banner_image) data-background="{{Storage::url($banner->banner_image) }}" @else data-background="{{ asset('frontend/assets/images/bg/breadcrumb-bg.png') }}" @endif>

Booking Confirmation

Tembea Horizons Booking

Booking Confirmation

We're thrilled to confirm your booking! Once your reservation is processed, we'll send you a confirmation email containing all the essential information regarding your booking.

Thank you for selecting our services. Your trust and support mean the world to us.

Start Date:

{{$order->date_arrival->format('d M , Y. D')}}

End Date:

{{$order->date_arrival->addDays($order->total_stay)->format('d M , Y. D')}}

Booking ID:

#{{$order->id}}

Payment Method:

Bank

Booking Details

@if($order->tours()->count() > 0) @foreach($order->tours() as $tour)
{{$tour->title}}
{{$order->number_adult}} 𝗑 Adult (age 7-99)
${{($tour->price ?? 0) * $order->number_adult}}
@if($order->number_child > 0)
{{$order->number_child}} 𝗑 Child (age 0-6)
${{($tour->price_per_child ?? 0) * $order->number_child}}
@endif
Tour Total
${{(($tour->price ?? 0) * $order->number_adult) + (($tour->price_per_child ?? 0) * $order->number_child)}}
@endforeach
Grand Total
${{$order->tours()->sum(function($tour) use ($order) { return (($tour->price ?? 0) * $order->number_adult) + (($tour->price_per_child ?? 0) * $order->number_child); })}}
@else
{{$order->tour->title ?? 'Selected Tour'}}
{{$order->number_adult}} 𝗑 Adult (age 7-99)
${{($order->tour->price ?? 0) * $order->number_adult}}
@if($order->number_child > 0)
{{$order->number_child}} 𝗑 Child (age 0-6)
${{($order->tour->price_per_child ?? 0) * $order->number_child}}
@endif
Total price
${{(($order->tour->price ?? 0) * $order->number_adult) + (($order->tour->price_per_child ?? 0) * $order->number_child)}}
@endif
@endsection