@extends('admin.layouts.admin') @section('title','Orders') @section('page-title','Orders') @section('content')
@foreach($orders as $order) @endforeach
# Order No Merchant Customer Total Status
{{ $loop->iteration }} #{{ $order->order_no }} {{ $order->merchant->name ?? '-' }} {{ $order->customer->name ?? '-' }} LKR {{ number_format($order->total,2) }} {{ ucfirst($order->status) }}
{{ $orders->links() }} {{-- ORDER MODAL --}} @endsection @push('scripts') @endpush