{{ __('Recent Order List') }}

{{ __('View All') }}
@foreach ($orders as $order) @endforeach
{{ __('Order ID') }}
{{ __('Amount') }}
{{ __('Date') }}
{{ __('Payment') }}
{{ __('Status') }}
{{ __('Action') }}

{{ $order->order_id }}

{{ currency($order->total) }}

{{ $order->created_at->format('d M Y') }}

@if ($order->payment_status == 1) {{ __('Paid') }} @else {{ __('Unpaid') }} @endif @if ($order->order_status == 0)

{{ __('Pending') }}

@endif @if ($order->order_status == 5)

{{ __('Completed') }}

@endif @if ($order->order_status == 2)

{{ __('Rejected') }}

@endif @if ($order->order_status == 3)

{{ __('Processing') }}

@endif @if ($order->order_status == 4)

{{ __('Shipped') }}

@endif