@extends('user.layouts.master') @section('main-content')
@include('user.layouts.notification')
Order Lists
@if(count($orders)>0) @php $counter = 1; @endphp @foreach($orders as $order) @php $counter++; @endphp @endforeach
# Order No. Name Email Qty. Charge Total Status Action
{{$counter}} {{$order->order_number}} {{$order->first_name}} {{$order->last_name}} {{$order->email}} {{$order->quantity}} ${{$order->shipping->price}} ${{number_format($order->total_amount,2)}} @if($order->status=='new') NEW @elseif($order->status=='process') PROCESSING @elseif($order->status=='delivered') DELIVERED @else {{$order->status}} @endif
@csrf @method('delete')
{{$orders->links()}} @else
No orders found!!! Please order some products
@endif
@endsection @push('styles') @endpush @push('scripts') @endpush