@extends('layouts.dashboard') @section('content')
@include('flash_msg')

@if(!empty($orders)) @foreach($orders as $key=>$value) @endforeach @if ($orders->count() == 0) @endif @endif
# USER NAME SUB TOTAL AMOUNT GST AMOUNT COUPON CODE COUPON AMOUNT GRANT TOTAL
{{ ++$key }} @if ($value->user) {{ $value->user->name }} @else User not found @endif {{ $value->subTotalAmount }} {{ $value->gstAmount }} {{ $value->couponCode}} {{ $value->couponAmount }} {{ $value->grantTotal }}
No Orders display.
# User Name Sub Total Amount Gst Amount Coupon Code Coupon Amount Grant Total

Displaying {{$orders->count()}} of {{ $orders->total() }} Add Orders.

{{--
{{ $memberships->appends(request()->all())->links() }}
--}}
@endsection