@extends('docs.master', [ 'title' => $title ?? ($data['title'] ?? 'Report Sale'), ]) @section('content')
{{$model->unitsale_contact ? ($model->unitsale_contact->client ? $model->unitsale_contact->client->person : '') : ''}}
--}}
--}}
{{$model->unitsale_contact ? ($model->unitsale_contact->client ? $model->unitsale_contact->client->person : '') : ''}}
Customer Details:
@foreach ($model['unitsale_contact_joint']->clients as $index => $item) {{ $item->client ? $item->client->id + 1000000 : '-' }} @if ($index < count($model['unitsale_contact_joint']->clients) - 1) , @endif @endforeach
@foreach ($model['unitsale_contact_joint']->clients as $index => $item) {{ $item->client ? $item->client->person : '-' }} @if ($index < count($model['unitsale_contact_joint']->clients) - 1) , @endif @endforeach
Purchase Date
{{ $model['unitsale_details'] ? date('d-M-Y', strtotime($model['unitsale_details']->booking_date)) : '-' }}
unit no
{{ $model['unitsale_details'] ? ($model['unitsale_details']->unit ? $model['unitsale_details']->unit->unitname : '') : '' }}
Address
{{ $model['unitsale_contact'] ? ($model['unitsale_contact']->client ? ($model['unitsale_contact']->client->billing_address ? $model['unitsale_contact']->client->billing_address : '-') : '') : '' }}
Purchase Price
{{ number_format($model['unitsale_details'] ? $model['unitsale_details']->net_price : '') }}
Type
{{ $model['unitsale_details'] ? $model['unitsale_details']->unittype['unittype'] : '' }}
Mobile:
{{ $model['unitsale_contact'] ? ($model['unitsale_contact']->client ? $model['unitsale_contact']->client->mobile_number : '') : '' }}
Paid Up
{{ number_format($model['total_receipts'] ?? 0, 2) }}
Project
{{ $model['unitsale_details'] ? $model['unitsale_details']->building->project['projectname'] : '' }}
Email:
{{ $model['unitsale_contact'] ? ($model['unitsale_contact']->client ? $model['unitsale_contact']->client->email : '') : '' }}
PDC's In Hand
{{ number_format($model['total_pdcs'] ?? 0, 2) }}
VAT
{{ number_format($totalVat ?? 0, 2) }}
@endifDues Summary As Of
{{ date('d-M-Y') }}
Down Payment / Installment
{{ number_format(
$model['total_installment'] -
$model['installment_receipts'] +
$model['axtra_amount'][0]->amount -
($model['unitsale_contact_joint']->total_refunds ?? 0) +
($model['future_additional_discount'] ?? 0),
2,
) }}
Admin Charges / Unit registration
{{ number_format($model['unitsale_details']->dld_charges + $model['unitsale_details']->admin_fee + $model['unitsale_details']->admin_fee * 0.05 - $model['total_dld_admin_receipts'] ?? 0, 2) }}
Late Payment Charges
{{ number_format($model['dataSet']['penalty_balance'] ?? 0, 2) }}
Total Payment Due
{{ number_format(
$model['total_dues'] +
$model['unitsale_details']->dld_charges +
$model['unitsale_details']->admin_fee +
$model['unitsale_details']->admin_fee * 0.05 -
$model['total_dld_admin_receipts'] +
$model['axtra_amount'][0]->amount -
($model['unitsale_contact_joint']->total_refunds ?? 0) -
$model['dataSet']['penalty_received'] ??
(0 ?? 0),
2,
) }}
PAYMENT TERMS
SCHEDULE
| SR# | Description | Date | Amount | Receipt | Late Payment | Balance |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
@if ($item->mount_received > 0)
@if (str_contains($descr, 'discount'))
Additional Discount
@else
Receipt Against {{ $item->descr }} @endif @else {!! $item->descr !!} @endif |
{{ $item->due_date ? date('d-M-Y', strtotime($item->due_date)) : '-' }} | {{-- Amount Column --}}{{ number_format($item->due ?? 0, 2) }} | {{-- Receipt Column (only for non-penalty receipts) --}}@if ($receiptValue != 0) {{ number_format($receiptValue, 2) }} @else {{ number_format(0, 2) }} @endif | {{-- Late Payment Column (penalties, waiveoffs, or penalty receipts) --}}{{ number_format($latePaymentValue, 2) }} | {{-- Running Balance --}}{{ number_format($balance, 2) }} |
| Total | {{ number_format($totalDue, 2) }} | {{ number_format($totalReceipts, 2) }} | {{ number_format($totalLatePayment, 2) }} | {{ number_format($balance, 2) }} | ||
Unit Registration / Admin Charges
| SR# | Description | Date | Amount | Receipt | Balance |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->is_additional_discount == 1 ? 'Additional Discount' : $item->charge_type }} | {{ $item->transaction_date ? date('d-M-Y', strtotime($item->transaction_date ?? '')) : '-' }} | {{ number_format($item->charges ?? 0, 2) }} | {{ number_format($item->amount_receipts ?? 0, 2) }} | {{ number_format($balancedld ?? 0, 2) }} |
| Total | {{ number_format($totaldld ?? 0, 2) }} | {{ number_format($totaldldrec ?? 0, 2) }} | |||
OTHER CHARGES
| SR# | Description | Date | Amount | Receipt | Balance |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->Details ? $item->Details : '-' }} | {{ $item->transaction_date ? date('d-M-Y', strtotime($item->transaction_date ?? '')) : '-' }} | {{ number_format($item->charges ?? 0, 2) }} | {{ number_format($item->amount_receipts ?? 0, 2) }} | {{ number_format($balance ?? 0, 2) }} |
| Total | {{ number_format($totalAmountExtra ?? 0, 2) }} | {{ number_format($totalExtReceipts ?? 0, 2) }} | |||
Summary
| SR# | Description | Amount |
|---|---|---|
| {{ 1 }} | {{ 'Admin Fee with VAT' }} | {{ number_format($model['unitsale_details']->admin_fee + $model['unitsale_details']->admin_fee * 0.05 ?? 0, 2) }} |
| {{ 2 }} | {{ 'DLD Charges' }} | {{ number_format($model['unitsale_details']->dld_charges ?? 0, 2) }} |
| {{ 3 }} | {{ 'Purchase Price' }} | {{ number_format($model['unitsale_details']->net_price ?? 0, 2) }} |
| {{ 4 }} | {{ 'Other Charges' }} | {{ number_format($totalAmountExtra ?? 0, 2) }} |
| {{ 5 }} | {{ 'VAT' }} | {{ number_format($totalVat ?? 0, 2) }} |
| {{ 5 }} | {{ 'Penalties' }} | {{ number_format($model['dataSet']['penalty'] ?? 0, 2) }} |
| {{ 'Total' }} | {{ number_format($model['unitsale_details']->dld_charges + $model['unitsale_details']->admin_fee + +($model['unitsale_details']->admin_fee * 0.05) + $totalAmountExtra + $model['unitsale_details']->net_price + $totalVat ?? 0, 2) }} | |
| {{ 'Total Penalty Received' }} | {{ number_format($model['dataSet']['penalty_received'] ?? 0, 2) }} | |
| {{ 'Refunds if Any' }} | {{ number_format($model['axtra_amount'][0]->amount ?? 0, 2) }} | |
| {{ 'Amount Transferd' }} | {{ number_format($model['transfer_amount'] ?? 0, 2) }} | |
| {{ 'Discount' }} | {{ number_format($model['unitsale_details']->additional_discount ?? 0, 2) }} | |
| {{ 'Total Receipts' }} | {{ number_format($totalReceipts + $totaldldrec + $totalExtReceipts ?? 0, 2) }} | |
| {{ 'Net Balance' }} | {{ number_format($model['unitsale_details']->dld_charges + $model['unitsale_details']->admin_fee + +($model['unitsale_details']->admin_fee * 0.05) + $totalAmountExtra + $model['unitsale_details']->net_price + $totalVat + $totalLatePayment + $model['axtra_amount'][0]->amount - ($totalReceipts + $totaldldrec + $totalExtReceipts - $model['transfer_amount']) ?? 0, 2) }} | |
COLLECTED POST DATED CHEQUES DETAIL
| SR# | Chq Date | Chq No | Amount |
|---|---|---|---|
| {{ $index + 1 }} | {{ $item->payment_date ? date('d-M-Y', strtotime($item->payment_date ?? '')) : '-' }} | {{ $item->chq_no }} | {{ number_format($item->amount_received ?? 0, 2) }} |
| Total | {{ number_format($totalMount ?? 0, 2) }} | ||
BOUNCED CHEQUES
| SR# | Chq Date | Chq No | Amount |
|---|---|---|---|
| {{ $index + 1 }} | {{ $item->payment_date ? date('d-M-Y', strtotime($item->payment_date ?? '')) : '-' }} | {{ $item->chq_no }} | {{ number_format($item->amount_received ?? 0, 2) }} |
| Total | {{ number_format($totalMount ?? 0, 2) }} | ||
Note:
* Please note below
Escrow Account Details for online transfers and deposits.
Bank Name :
{{ $model['unitsale_details']->building ? ($model['unitsale_details']->building->project ? $model['unitsale_details']->building->project->bank_name : '-') : '-' }}
Account Name :
{{ $model['unitsale_details']->building ? ($model['unitsale_details']->building->project ? $model['unitsale_details']->building->project->account_title : '-') : '-' }}
Account No.
{{ $model['unitsale_details']->building ? ($model['unitsale_details']->building->project ? $model['unitsale_details']->building->project->account_no : '-') : '-' }}
IBAN No.
{{ $model['unitsale_details']->building ? ($model['unitsale_details']->building->project ? $model['unitsale_details']->building->project->iban_no : '-') : '-' }}
* You are requested to please send payment detail or Proof of payment to Accounts@empiredevelopment.ae
* Please email us on Accounts@empiredevelopment.ae within 15 days from statement of account date in case of any discrepency otherwise this statement of account will be considered as Accepted and Confirmed by the client.
* The above Post Dated Cheques amounts are not going to reflect in your statement until realisation of cheques from your bank.
Printed On: {{date('d-m-Y h:i:s A')}} by {{Auth::User()->name}}