Orders Create Order
Filter Export
Order ID Customer Date Total Status Payment Action @foreach($orders as $order) {{ $order['id'] }}
{{ $order['customer_name'] }} {{ $order['customer_email'] }}
{{ $order['date'] }} {{ $order['total'] }} @php $statusVariant = match ($order['status']) { 'Paid' => 'success', 'Shipped' => 'primary', 'Pending' => 'warning', default => 'neutral' }; @endphp {{ $order['status'] }} {{ $order['payment_method'] }}
@endforeach
{{ $orders->links() }}
Apply Filters Reset