direction == 1) dir="rtl" @endif> {{-- required meta tags --}} {{-- title --}}
| {{ __('Booking No') }} | {{ '#' . $orderInfo->booking_number ?? '' }} |
|---|---|
| {{ __('Booking Date') }} | {{ date_format($orderInfo->created_at, 'M d, Y') }} |
| {{ __('Customer Name') }} | {{ $orderInfo->customer_name ?? '' }} |
| {{ __('Vendor') }} | @if ($orderInfo->seller_id != 0) @if ($orderInfo->seller) {{ @$orderInfo->seller->username }} @endif @else {{ __('admin') }} @endif |
| {{ __('Customer Email') }} | {{ @$orderInfo->customer_email}} |
| {{ __('Space') }} | {{ @$spaceTitle->title}} |
| {{ __('Tax') }} ({{ $orderInfo->tax_percentage ?? '' . '%' }}) | @if (is_null($orderInfo->tax ?? '')) {{ __('Price Requested') }} @else {{ $position == 'left' ? $currency . ' ' : '' }}{{ formatPrice(number_format($orderInfo->tax ?? '', 2)) }}{{ $position == 'right' ? ' ' . $currency : '' }} @endif |
| {{ __('Total') }} | @if (is_null($orderInfo->grand_total)) {{ __('Price Requested') }} @else {{ $position == 'left' ? $currency . ' ' : '' }}{{ formatPrice(number_format($orderInfo->grand_total, 2)) }}{{ $position == 'right' ? ' ' . $currency : '' }} @endif |
| {{ __('Payment Method') }} | @if (is_null($orderInfo->payment_method)) {{ __('None') }} @else {{ $orderInfo->payment_method }} @endif |
| {{ __('Payment Status') }} | {{ ucfirst($orderInfo->payment_status) }} |