{{__("Booking ID")}}: #{{$booking->id}}
{{__("Booking Detail")}}
{{__("Customer Information")}}
{{__('Booking Status')}}
{{$booking->statusName}}
{{__('Booking Date')}}
{{display_date($booking->created_at)}}
@if(!empty($booking->gateway)) @php($gateway = get_payment_gateway_obj($booking->gateway)) @if($gateway)
{{__('Payment Method')}}
{{$gateway->name}}
@endif @php($receipt = !is_null($booking->payment) && !is_null($booking->payment->logs) ? (json_decode($booking->payment->logs, true)["Transaction ID"] ?? null) : null) @if($booking->gateway == 'mfuko' && !is_null($receipt))
{{__('Transaction ID')}}
{{$receipt}}
@endif @if($gateway and $note = $gateway->getOption('payment_note'))
{{__('Payment Note')}}
{!! clean($note) !!}
@endif @endif @php($vendor = $service->author) @if($vendor->hasPermissionTo('dashboard_vendor_access') and !$vendor->hasPermissionTo('dashboard_access'))
{{ __("Vendor") }}
{{$vendor->getDisplayName()}}
@endif
@include ($service->checkout_booking_detail_file ?? '')
@include ($service->booking_customer_info_file ?? 'Booking::frontend/booking/booking-customer-info')