@extends('layouts.app') @push('css') @endpush @section('content')
Payment Success

{{ $AirboatBooking->first_name ?? '' }}, your booking was submitted successfully!

Booking details has been sent to: {{ $AirboatBooking->email ?? '' }}

  • Booking Date: {{ date('m-d-Y', strtotime($AirboatBooking->date)) }}
  • Payment Method: {{ $AirboatBooking->payment_gateway=='offline_payment'?'Offline Payment':$AirboatBooking->payment_gateway }}
  • Booking Status: {{ ucfirst($AirboatBooking->status_payment) }}

Your Information

  • First name
    {{ $AirboatBooking->first_name ?? '' }}
  • Last name
    {{ $AirboatBooking->last_name ?? '' }}
  • Email
    {{ $AirboatBooking->email ?? '' }}
  • Phone
    {{ $AirboatBooking->phone ?? '' }}
  • Address line 1
    {{ $AirboatBooking->address ?? '' }}
  • Address line 2
    {{ $AirboatBooking->address2 ?? '' }}
  • City
    {{ $AirboatBooking->city ?? '' }}
  • State/Province/Region
    {{ $AirboatBooking->state ?? '' }}
  • ZIP code/Postal code
    {{ $AirboatBooking->zip_code ?? '' }}
  • Country
    {{get_country_name($AirboatBooking->country)}}
  • Special Requirements
    {{$AirboatBooking->customer_notes}}

Your Booking

{{ $AirboatBooking->CarType->name ?? '' }}

{{ $AirboatBooking->airports }}

@if(!empty($AirboatBooking->CarType->image_id)) {!! get_image_tag($AirboatBooking->CarType->image_id,'medium',['class'=>'img-responsive','alt'=>$AirboatBooking->CarType->name ??'']) !!} @else {!! get_image_tag($AirboatBooking->CarType->image_id,'medium',['class'=>'img-responsive','alt'=>$AirboatBooking->CarType->name ??'']) !!} @endif
{{-- ----start box---- --}}
Destination:{{ ucfirst($AirboatBooking->destination) }}
{{ $AirboatBooking->airports }}

{{ $AirboatBooking->passengers }}


{{ date('m-d-Y', strtotime($AirboatBooking->date)) }}

{{-- ----end box---- --}}
  • Total:
    {{ format_money($AirboatBooking->price) }}
    Paid:
    $0
    Remain:
    {{ format_money($AirboatBooking->price) }}
@endsection @push('js') @endpush