Incoming orders across all your storefronts.
| When | Customer | Service | Storefront | Status |
|---|---|---|---|---|
| {{ $booking->starts_at->format('D j M, g:i A') }} |
{{ $booking->customer_name }} @if($booking->customer_email){{ $booking->customer_email }} @endif |
{{ $booking->service_name }} | {{ $booking->qrCode?->label }} | @if($booking->status === \App\Models\QrBooking::STATUS_CONFIRMED) @else {{ ucfirst($booking->status) }} @endif |
No orders yet.
@else| When | Customer | Storefront | Amount | Payment | Fulfilment |
|---|---|---|---|---|---|
| {{ $order->paid_at?->format('M j, g:i A') ?? $order->created_at->format('M j, g:i A') }} |
{{ $order->customer_name ?: 'Customer' }} @if($order->customer_email){{ $order->customer_email }} @endif |
{{ $order->qrCode?->label }} | GHS {{ number_format((float) ($order->status === \App\Models\QrSaleOrder::STATUS_PAID ? $order->merchant_amount_ghs : $order->amount_ghs), 2) }} | {{ ucfirst($order->status) }} | @if($order->status === \App\Models\QrSaleOrder::STATUS_PAID) @else — @endif |