@extends($active_theme) @section('title') {{__('user.All Order')}} @endsection @section('frontend-content')
@include('user.inc.profile_header')
@include('user.inc.sideber')
@foreach ($orders as $index => $order) @if ($order->order_status == 1) @elseif ($order->order_status == 0) @endif @if($order->payment_status == 'success') @else @endif @endforeach
{{__('user.SN')}} {{__('user.Date')}} {{__('user.Customer')}} {{__('user.Order Id')}} {{__('user.Amount')}} {{__('user.Status')}} {{__('user.Payment')}} {{__('user.Action')}}
{{ ++$index }} {{ Carbon\Carbon::parse($order->created_at)->format('d F, Y') }} {{ $order->user->name}} {{ $order->order_id }} {{ $setting->currency_icon }}{{ round($order->total_amount) }}{{__('user.Complete')}}{{__('user.Pending')}}{{__('user.Success')}} {{__('user.Pending')}}
@endsection