| Order # |
Customer |
Total |
Status |
Payment |
Fulfillment |
Date |
Actions |
@forelse($orders as $order)
{{ $order->order_number }}
{{ $order->woocommerce_order_id }}
|
{{ $order->customer_name }}
@if($order->customer_email && $order->customer_email !== 'N/A')
{{ $order->customer_email }}
@endif
@if($order->customer_phone && $order->customer_phone !== 'N/A')
{{ $order->customer_phone }}
@endif
|
{{ $order->formatted_total_price }}
{{ $order->currency }}
|
{{ $order->status_label }}
|
{{ ucfirst($order->payment_status) }}
|
{{ ucfirst($order->fulfillment_status) }}
|
{{ $order->created_at->format('M d, Y H:i') }} |
|
@empty
|
No orders found
|
@endforelse
@if($orders instanceof \Illuminate\Pagination\LengthAwarePaginator && $orders->hasPages())
{{ $orders->links() }}
@endif