@extends('frontLayout.frontlayout') @section('content') @php use App\Libraries\General; use App\Libraries\FileSystem; @endphp
@include('frontend.dashboard.sidebar.sidebar')

My Orders

@if(isset($listing) && count($listing) > 0)
@include("frontend.dashboard.myOrders.orderListingLoop")
@include('frontend.partials.pagination',['pagination' => $listing]) @else
No orders records found!
@endif
@endsection