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

Complete Order List

List of all completed orders. You can view details or reprint invoices.

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 complete orders found.
{{ $orders->links() }}
@endsection