@include('admin.header')

CATALOG

MANAGE - ORDERS

@if (isset($orders) && count($orders) > 0) @foreach ($orders as $cust) @endforeach @else @endif
Order Number # Name Phone Total Amount Payment Status Order Status Order Date Action
#{{ $cust->order_number }} {{ $cust->name }} {{ $cust->mobile_number }} {{ $cust->order_amount_with_shipping }} {{ ucfirst($cust->payment_status) }} {{ $cust->order_status }} {{ $cust->created_at }}
No order found !
{!! $orders->links() !!}
@include('admin.footer')