{{ $title }}

@foreach ($orders as $index => $order) @endforeach
{{__('admin.SN')}} {{__('admin.Customer')}} {{__('admin.Order Id')}} {{__('admin.Date')}} {{__('admin.Quantity')}} {{__('admin.Amount')}} {{__('admin.Order Status')}} {{__('admin.Payment')}} {{__('admin.Action')}}
{{ ++$index }} {{ $order->user->name }} {{ $order->order_id }} {{ $order->created_at->format('d F, Y') }} {{ $order->product_qty }} {{ $setting->currency_icon }}{{ round($order->total_amount) }} @if ($order->order_status == 1) {{__('admin.Pregress')}} @elseif ($order->order_status == 2) {{__('admin.Delivered')}} @elseif ($order->order_status == 3) {{__('admin.Completed')}} @elseif ($order->order_status == 4) {{__('admin.Declined')}} @else {{__('admin.Pending')}} @endif @if($order->payment_status == 1) {{__('admin.success')}} @else {{__('admin.Pending')}} @endif