@extends('layouts.app') @section('head') @endsection @section('content')
Payment Success

{{$booking->first_name}}, {{__('your order was submitted successfully!')}}

{{__('Booking details has been sent to:')}} {{$booking->email}}

@if($note = $gateway->getOption("payment_note"))
{!! clean($note) !!}
@endif
  • {{__('Booking Number')}}: {{$booking->id}}
  • {{__('Booking Date')}}: {{display_date($booking->created_at)}}
  • @if(!empty($gateway))
  • {{__('Payment Method')}}: {{$gateway->name}}
  • @endif
  • {{__('Booking Status')}}: {{ $booking->status_name }}
@include ($service->booking_customer_info_file ?? 'Booking::frontend/booking/booking-customer-info')
@include ($service->checkout_booking_detail_file ?? '')
@endsection @section('footer') @endsection