@extends('dashboard.body.main') @section('container')
@if (session()->has('success')) @endif

Pending Order List

Orders that are currently pending. You can view details to complete them.

Clear Search
@forelse ($orders as $order) @empty @endforelse
No. Invoice No Payment Status Action
{{ (($orders->currentPage() * 10) - 10) + $loop->iteration }} {{ $order->invoice_no }} {{ $order->customer->name }} {{ $order->order_date->format('Y-m-d') }} {{ $order->payment_type }} {{ number_format($order->total, 2) }} {{ ucfirst($order->order_status) }}
No pending orders found.
{{ $orders->links() }}
@endsection