@extends("web.layouts.master") @section("content")

Order Confirmation

Please check your order detail

Location

{{ $selectedLocation->name }}

{{ $selectedLocation->address }}

{{ $selectedLocation->contact_no }}

Order Detail

Ticket

{{ $productVariant->product->name }}

Date of Visit

{{ $bookingHelper->getDateToVisit() }}

Time of Visit

{{ $productVariant->name }}

{{ $startTimeAndEndTime }}

@foreach ($bookingHelper->getBookingItems() as $bookingItem)
@if ($bookingItem["type"] == ProductTypeEnum::getString(ProductTypeEnum::TICKET))

{{ $bookingItem["qty"] . ' Ticket' }}

@elseif($bookingItem["type"] == ProductTypeEnum::getString(ProductTypeEnum::MEMBERSHIP))

Membership

@elseif ($bookingItem["type"] == ProductTypeEnum::getString(ProductTypeEnum::ADD_ON)) @if ($bookingItem["name"] == "Adult")

{{ $bookingItem["qty"] . ' ' . $bookingItem["name"] }}

@else

{{ '( ' . $bookingItem["qty"] . 'x ride ) ' . $bookingItem["name"] }}

@endif @endif

{{ GeneralHelper::transformAmount($bookingItem["price"] * $bookingItem["qty"]) }}


@endforeach

Total

{{ GeneralHelper::transformAmount($bookingHelper->getTotal()) }}

Parents Information

Title

{{ ucwords($parentInformation["title"]) }}

Email

{{ $parentInformation["email"] }}

Full Name

{{ ucwords($parentInformation["full_name"]) }}

Phone Number

{{ $parentInformation["phone_number"] }}

Kid Information

@foreach ($kidInformations as $kidInformation)

Full Name

{{ ucwords($kidInformation["full_name"]) }}

Age

{{ $kidInformation["age"] }} year

@endforeach

Payment Method

{{-- --}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{-- --}} {{--
--}} {{--
--}}

Total Payment

{{ GeneralHelper::transformAmount($bookingHelper->getGrandTotal()) }}

@include("web.components.choose-payment-modal", [ "modalIndex" => 0 ]) @include("web.components.modal-with-loading-icon", [ "modalIndex" => 1 ]) @include("web.components.cancelable-notification-modal", [ "modalIndex" => 2 ]) @endsection @push("stackJs") @endpush