Sales Overview

Sales Overview
@foreach($sales as $sale) @endforeach
Number Creation Date Customer House Type Project Amount Percentage Paid Payment Status MD Handover Status Allocation 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 == 0) Not Paid @endif @if($sale->percentage_paid > 1 && $sale->percentage_paid < 100) In Progress @endif @if($sale->percentage_paid > 99 ) Fully Paid @endif @if($sale->percentage_paid > 99 ) {{$sale->handover_status ?? 'Pending'}} @endif @if($sale->handover_status == 'Approved' ) Allocated @else Pending @endif
@include('includes.footer')