@vite(['resources/css/app.css', 'resources/js/app.js']) @include('admin.partials.styles') @include('admin.partials.sidebar')

{{ ucfirst($status) }} Orders Report

Scope:
Period:
to
Reset
@forelse($orders as $order) @empty @endforelse
Order Origin Customer Total Payment Date Actions
#{{ $order->order_number }}
{{ $order->getOrderScopeAttribute() }}
@if($order->shippingAddress)
{{ $order->shippingAddress->city }}, {{ $order->shippingAddress->state }}
{{ $order->shippingAddress->country }}
@else N/A @endif
{{ $order->user ? $order->user->name : $order->name }}
{{ $order->email }}
₹{{ number_format($order->total_amount, 2) }} {{ strtoupper($order->payment_status) }}
{{ str_replace('_', ' ', $order->payment_method) }}
{{ $order->created_at->format('M d, Y') }}
{{ $order->created_at->format('h:i A') }}
View Detail
No records matching your criteria were found.
@if($orders->count() > 0)
{{ $orders->withQueryString()->links() }}
@endif