@extends('admin.layouts.app') @section('panel') @php $due = $booking->due() @endphp
@if ($due > 0)
@lang('The guest didn\'t pay the due payment for this booking yet. The checkout process can\'t be completed until the payment is settled. Please receive the due amount.')
@endif @if ($due < 0)
@lang('The guest didn\'t receive the refundable amount for this booking yet. The checkout process can\'t be completed until the payment is settled. Please refund the amount.')
@endif
@include('admin.booking.partials.guest_info')
@include('admin.booking.partials.billing_info')
@include('admin.booking.partials.payment_summary')
@lang('Booking Number'): #{{ $booking->booking_number }} @php echo $booking->status_badge; @endphp
@can(['admin.booking.invoice', 'admin.booking.checkout', 'admin.booking.payment'])
@can('admin.booking.invoice') @lang('Print Invoice') @endcan @can('admin.booking.payment') @lang('Go To Payment') @endcan @can('admin.booking.checkout') @endcan
@endcan
@can('admin.booking.checkout') @endcan @endsection @can('admin.booking.all') @push('breadcrumb-plugins') @endpush @endcan @push('style') @endpush