Approvals
Approvals
@if(session('success'))
{{ session('success') }}
@endif
| Number | Creation Date | Customer | House Type | Project | Amount | Percentage Paid | Payment Status | Handover Status | Action |
|---|---|---|---|---|---|---|---|---|---|
| {{$sale->order_id ?? ''}} | {{ \Carbon\Carbon::parse($sale->date_order)->format('d-m-Y') ?? '' }} | {{$sale->customer_name ?? ''}} | {{$sale->house_type ?? ''}} | {{$sale->project ?? ''}} |
₦ {{number_format($sale->amount ?? 0)}} |
{{number_format($sale->percentage_paid, 0) ?? ''}} % |
@if($sale->percentage_paid > 99 ) Fully Paid @endif | @if($sale->percentage_paid > 99 ) {{$sale->handover_status ?? 'Pending'}} @endif |
@if($sale->percentage_paid > 99)
@endif
|