{{ $title }}
@if ($orders->count() > 0)
@else
@endif
{{__('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 }} | {{ Carbon\Carbon::parse($order->created_at)->format('d F, Y') }} | {{ $order->cart_qty }} | {{ $setting->currency_icon }}{{ round($order->total_amount) }} | @if ($order->order_status == 1) {{__('admin.Complete')}} @elseif ($order->order_status == 0) {{__('admin.Pending')}} @endif | @if($order->payment_status == 'success') {{__('admin.success')}} @else {{__('admin.Pending')}} @endif |
{{__('admin.Order not found!')}}
{{ $orders->links() }}