@extends('layouts.admin') {{-- ১. স্টাইল সেকশন (হেডারে লোড হবে) --}} @section('styles') {{-- Select2 CSS --}} @endsection {{-- ২. কন্টেন্ট সেকশন (বডিতে লোড হবে) --}} @section('content') @php $users = \App\Models\User::where('status', 1)->orderBy('name', 'asc')->get(); @endphp
| Invoice | Customer | Total | Paid | Due | Status | Action |
|---|---|---|---|---|---|---|
|
{{ $order->order_number }}
{{ $order->created_at->format('d M, h:i A') }} |
{{ $order->customer->name }}
{{ $order->customer->phone }} |
৳{{ number_format($order->total_amount, 2) }} | ৳{{ number_format($order->paid_amount, 2) }} | ৳{{ number_format($order->due_amount, 2) }} | @if($order->due_amount > 0) Due @else Paid @endif |
|
| No data found. | ||||||