{{-- mainLayouts extends --}} @extends('layouts.contentLayoutMaster') {{-- Page title --}} @section('title', 'Order List') @section('vendor-style') @endsection {{-- page style --}} @section('page-style') @endsection @section('content')
{{--
--}}
@foreach (collect(request()->status) as $status) @endforeach @foreach (collect(request()->city_ids) as $city_id) @endforeach {{-- --}}
Merchant Orders
{{ $orders->withQueryString()->links() }}
@forelse ($orders as $key => $order) @empty @endforelse
# Merchant Name City Township Address Total Price Payment Method Created Status
{{ $order->display_order_number }} @if ($order->user && $order->user->name) {{ $order->user->name }} @else - @endif {{ $order->address->city->name ?? null }} {{ $order->address->township->name ?? null }} {{ $order->address->address }} {{ $order->total_price }} {{ $order->payment_method }} {{ $order->created_time }} {{ $order->status }}
remove_red_eye @if ($order->qr_code_link != null)
@endif
@csrf @method('DELETE')
No Order Found!
{{ $orders->withQueryString()->links() }}
@endsection @section('vendor-script') @endsection @section('page-script') @endsection