@if(session('success'))
{{ session('success') }}
@endif

{{ __('Total Orders') }}

{{ sprintf('%02d', $stats['total_orders']) }}

{{ __('Pending Orders') }}

{{ sprintf('%02d', $stats['pending']) }}

{{ __('Recent Orders') }}

{{ __('VIEW ALL') }}
@forelse($orders as $order) @empty @endforelse
{{ __('Order Number') }} {{ __('Date') }} {{ __('Status') }} {{ __('Total') }} {{ __('Action') }}
{{ $order->order_number }} {{ $order->created_at->format('M d, Y') }} {{ __($order->status) }} ৳{{ number_format($order->total_amount) }} {{ __('INVOICE') }}
{{ __('No recent orders.') }}