Receipt Information
Receipt # | {{$receipt->receipt_no}} | |
Date | {{date('d-m-Y',strtotime($receipt->receipt_date))}} | |
Customer | {{$receipt->customer->name}} | |
Unit No. | {{$receipt->property->inventory ? $receipt->property->inventory->unit_number : ''}} | |
Payment Head | @if($receipt->payment_head == \App\CustomerStatement::down_payment) @if( $receipt->property->booking_type == \App\CustomerProperty::full_payment) {{'Full Payment'}} @else {{'Down Payment'}} @endif @elseif($receipt->payment_head == \App\CustomerStatement::possession) Possession Fee @elseif($receipt->payment_head == \App\CustomerStatement::installment) Installment @elseif($receipt->payment_head == \App\CustomerStatement::other) Other @elseif($receipt->payment_head == \App\CustomerStatement::allotment) Allotment @elseif($receipt->payment_head == \App\CustomerStatement::confirmation) Confirmation @elseif($receipt->payment_head == \App\CustomerStatement::booking) Booking @elseif($receipt->payment_head == \App\CustomerStatement::development) Development @elseif($receipt->payment_head == \App\CustomerStatement::file_processing) File Processing @elseif($receipt->payment_head == \App\CustomerStatement::registration) Registration @elseif($receipt->payment_head == \App\CustomerStatement::transfer_fee) Transfer Fee @endif | |
Payment Mode | @if(!empty($receipt->payment_method)) @if($receipt->payment_method == \App\Receipt::cash) Cash @elseif($receipt->payment_method == \App\Receipt::bank) Bank @elseif($receipt->payment_method == \App\Receipt::cheque) Cheque/ DD/ PO @else Adjustment @endif @else @if($receipt->payment_mode == \App\Receipt::cash) Cash @elseif($receipt->payment_mode == \App\Receipt::bank) Bank @elseif($receipt->payment_mode == \App\Receipt::cheque) Cheque/ DD/ PO @else Adjustment @endif @endif | |
Instrument No. | {{$receipt->cheque_number}} | |
Company Account | @foreach($cBanks as $company_bank) @if($company_bank->id == $receipt->company_account) {{$company_bank->name}} @endif @endforeach | |
Depositor Bank Account | @foreach($banks as $depositor_bank) @if($depositor_bank->id == $receipt->bank_name) {{$depositor_bank->name}} @endif @endforeach | |
Gross Amount | {{number_format($receipt->amount)}} | |
Tax Amount | @if($receipt->tax_paid_by == \App\Receipt::company) {{number_format($receipt->tax_amount)}} @else {{number_format(0)}} @endif | |
Net Amount | @if($receipt->tax_paid_by == \App\Receipt::company){{number_format($receipt->amount + $receipt->tax_amount)}} | @else{{number_format($receipt->amount)}} | @endif
Tax Pay By | @if($receipt->tax_paid_by == \App\Receipt::customer) Customer @else Company @endif | |
Tax Payment Received | @if($receipt->tax_payment_received) YES @else NO @endif | |
Notes | {{$receipt->notes}} | |
Adjustment Detail | {{$receipt->adjustment_detail}} | |
Rebate Detail | Adjust againt {{$receipt->rebate->property->inventory->unit_number}} |
Receipt Documents
@php $images = json_decode($receipt->documents , true); $file_ext = array('docx','pdf'); echo ''; @endphp @endif@if($receipt->property) @if($receipt->property->inventory->multiProject) {{ $property->inventory->multiProject->name }} @endif @endif
Receipt of Payment
Received with thanks from Mr./Ms./Mrs.
{{$receipt->customer->name}}
Membership # {{$property->membership_no}}
On account of payment head: @if($receipt->payment_head == \App\CustomerStatement::down_payment) @if( $receipt->property->booking_type == \App\CustomerProperty::full_payment) {{'Full Payment'}} @else {{'Down Payment'}} @endif @elseif($receipt->payment_head == \App\CustomerStatement::possession) Possession Fee @elseif($receipt->payment_head == \App\CustomerStatement::installment) Installment @elseif($receipt->payment_head == \App\CustomerStatement::other) Other @elseif($receipt->payment_head == \App\CustomerStatement::allotment) Allotment @elseif($receipt->payment_head == \App\CustomerStatement::confirmation) Confirmation @elseif($receipt->payment_head == \App\CustomerStatement::booking) Booking @elseif($receipt->payment_head == \App\CustomerStatement::development) Development @elseif($receipt->payment_head == \App\CustomerStatement::file_processing) File Processing @elseif($receipt->payment_head == \App\CustomerStatement::registration) Registration @elseif($receipt->payment_head == \App\CustomerStatement::transfer_fee) Transfer Fee @endif
Unit Size: {{$receipt->property->inventory ? $receipt->property->inventory->size->name : ''}} {{$size}}
Type: {{$receipt->property->inventory ? $receipt->property->inventory->type->name : ''}} Unit
Payment Method: @if($receipt->payment_method == \App\Receipt::cash) Cash @elseif($receipt->payment_method == \App\Receipt::bank) Bank @elseif($receipt->payment_method == \App\Receipt::cheque) Cheque @elseif($receipt->payment_method == \App\Receipt::adjustment) Adjustment @endif
Instrument/STN# @if($receipt->payment_method == \App\Receipt::bank || $receipt->payment_method == \App\Receipt::cheque) {{$receipt->cheque_number}} @else N/A @endif
Drawn/Transaction Date: {{date('d-m-Y')}}
@elseDrawn/Transaction Date: {{date('d-m-Y',strtotime($receipt->receipt_date))}}
@endifThe Sum of Rupees: {{$words}} only
Paid Amount
Rs. @if($receipt->tax_paid_by == \App\Receipt::company) {{ number_format($receipt->amount + $receipt->tax_amount) }} @else {{ number_format($receipt->amount) }} @endif
Balance Amount
Rs. {{number_format($balance)}}
{!! QrCode::size(100)->generate($qrCodeOutput); !!}
Signature
@if($receipt->property) @if($receipt->property->inventory->multiProject) {{ $property->inventory->multiProject->name }} @endif @endif
Receipt of Payment
Received with thanks from Mr./Ms./Mrs.
{{$receipt->customer->name}}
Membership # {{$property->membership_no}}
On account of payment head: @if($receipt->payment_head == \App\CustomerStatement::down_payment) @if( $receipt->property->booking_type == \App\CustomerProperty::full_payment) {{'Full Payment'}} @else {{'Down Payment'}} @endif @elseif($receipt->payment_head == \App\CustomerStatement::possession) Possession Fee @elseif($receipt->payment_head == \App\CustomerStatement::installment) Installment @elseif($receipt->payment_head == \App\CustomerStatement::other) Other @elseif($receipt->payment_head == \App\CustomerStatement::allotment) Allotment @elseif($receipt->payment_head == \App\CustomerStatement::confirmation) Confirmation @elseif($receipt->payment_head == \App\CustomerStatement::booking) Booking @elseif($receipt->payment_head == \App\CustomerStatement::development) Development @elseif($receipt->payment_head == \App\CustomerStatement::file_processing) File Processing @elseif($receipt->payment_head == \App\CustomerStatement::registration) Registration @elseif($receipt->payment_head == \App\CustomerStatement::transfer_fee) Transfer Fee @endif
Unit Size: {{$receipt->property->inventory ? $receipt->property->inventory->size->name : ''}} {{$size}}
Type: {{$receipt->property->inventory ? $receipt->property->inventory->type->name : ''}} Unit
Payment Method: @if($receipt->payment_method == \App\Receipt::cash) Cash @elseif($receipt->payment_method == \App\Receipt::bank) Bank @elseif($receipt->payment_method == \App\Receipt::cheque) Cheque @elseif($receipt->payment_method == \App\Receipt::adjustment) Adjustment @endif
Instrument/STN# @if($receipt->payment_method == \App\Receipt::bank || $receipt->payment_method == \App\Receipt::cheque) {{$receipt->cheque_number}} @else N/A @endif
Drawn/Transaction Date: {{date('d-m-Y')}}
@elseDrawn/Transaction Date: {{date('d-m-Y',strtotime($receipt->receipt_date))}}
@endifThe Sum of Rupees: {{ $words }} only
Paid Amount
Rs. @if($receipt->tax_paid_by == \App\Receipt::company) {{ number_format($receipt->amount + $receipt->tax_amount) }} @else {{ number_format($receipt->amount) }} @endif
Balance Amount
Rs. {{ number_format($balance) }}
{!! QrCode::size(100)->generate($qrCodeOutput); !!}
Signature
@if($receipt->property) @if($receipt->property->inventory->multiProject) {{ $property->inventory->multiProject->name }} @endif @endif
Receipt of Payment
Received with thanks from Mr./Ms./Mrs.
{{$receipt->customer->name}}
Membership # {{$property->membership_no}}
On account of payment head: @if($receipt->payment_head == \App\CustomerStatement::down_payment) @if( $receipt->property->booking_type == \App\CustomerProperty::full_payment) {{'Full Payment'}} @else {{'Down Payment'}} @endif @elseif($receipt->payment_head == \App\CustomerStatement::possession) Possession Fee @elseif($receipt->payment_head == \App\CustomerStatement::installment) Installment @elseif($receipt->payment_head == \App\CustomerStatement::other) Other @elseif($receipt->payment_head == \App\CustomerStatement::allotment) Allotment @elseif($receipt->payment_head == \App\CustomerStatement::confirmation) Confirmation @elseif($receipt->payment_head == \App\CustomerStatement::booking) Booking @elseif($receipt->payment_head == \App\CustomerStatement::development) Development @elseif($receipt->payment_head == \App\CustomerStatement::file_processing) File Processing @elseif($receipt->payment_head == \App\CustomerStatement::registration) Registration @elseif($receipt->payment_head == \App\CustomerStatement::transfer_fee) Transfer Fee @endif
Unit Size: {{$receipt->property->inventory ? $receipt->property->inventory->size->name : ''}} {{$size}}
Type: {{$receipt->property->inventory ? $receipt->property->inventory->type->name : ''}} Unit
Payment Method: @if($receipt->payment_method == \App\Receipt::cash) Cash @elseif($receipt->payment_method == \App\Receipt::bank) Bank @elseif($receipt->payment_method == \App\Receipt::cheque) Cheque @elseif($receipt->payment_method == \App\Receipt::adjustment) Adjustment @endif
Instrument/STN# @if($receipt->payment_method == \App\Receipt::bank || $receipt->payment_method == \App\Receipt::cheque) {{$receipt->cheque_number}} @else N/A @endif
Drawn/Transaction Date: {{date('d-m-Y')}}
@elseDrawn/Transaction Date: {{date('d-m-Y',strtotime($receipt->receipt_date))}}
@endifThe Sum of Rupees: {{ $words }} only
Paid Amount
Rs. @if($receipt->tax_paid_by == \App\Receipt::company) {{ number_format($receipt->amount + $receipt->tax_amount) }} @else {{ number_format($receipt->amount) }} @endif
Balance Amount
Rs. {{ number_format($balance) }}
{!! QrCode::size(100)->generate($qrCodeOutput); !!}
Signature