@extends('frontend.layouts.frontend_design') @section('content')
@if(!empty($orders) && $orders->count()) @foreach ($orders as $orderInfo) @endforeach @else @endif
{{__('lbl.OrderId')}} {{__('lbl.TotalItems')}} {{__('lbl.subTotal')}} {{__('lbl.FinalTotal')}} {{__('lbl.CreatedAt')}}
{{$orderInfo->app_order_id}} {{$orderInfo->order_total_items}} {{storecurrencyshop().$orderInfo->order_sub_total}} {{storecurrencyshop().$orderInfo->order_total}} {{$orderInfo->created_at->diffForHumans()}}
There are no data.
{{ $orders->links() }}
@endsection