@extends('dispatch.layout') @section('dispatch-content')
Orders
Delivered: {{ $statusCounts['delivered'] }}
Pending: {{ $statusCounts['pending'] }}
Cancelled: {{ $statusCounts['cancelled'] }}
@csrf @foreach($orders as $item) @endforeach
Order ID Address Order Placed Date Payment Method Quantity Status Order From
{{ $item['id']??'' }} {{ $item['shipping_address']??'' }} {{ $item['created_date']??'' }} {{ $item['payment_method']??'' }} {{ $item['quantity']??0 }} {{ $item['status']??'' }} {{ $item['order_type']??'' }}
{{ $orders->links() }}
@push('dispatch-js') @endpush @endsection