@extends('layouts.app') @section('title') Received Amount Statement     {{date(('M d,Y'),strtotime($from_date))}} - {{date(('M d,Y'),strtotime($to_date))}} @stop @section('breadcrumb') @stop @section('css') @stop @section('content')

{{env('APP_NAME')}}

Received Amount Statement

{{date(('M d,Y'),strtotime($from_date))}} - {{date(('M d,Y'),strtotime($to_date))}}
Date: {{date('d-m-Y')}}
User ID:   {{Auth::user()->name}}
@if(empty($type) && $type != 'all')
{{ csrf_field() }}
@endif @foreach($receipts as $receipt) @if( ($filter_type == 'filter' && $block > 0 && $block == $receipt->property->inventory->floor->unitBlock->id) || $filter_type == 'all' ) @if($receipt->payment_mode == \App\Receipt::cash) @elseif($receipt->payment_mode == \App\Receipt::bank) @elseif($receipt->payment_mode == \App\Receipt::cheque) @elseif($receipt->payment_mode == \App\Receipt::adjustment) @else @endif @if($receipt->payment_head == \App\Receipt::down_payment) @elseif($receipt->payment_head == \App\Receipt::possession_fee) @elseif($receipt->payment_head == \App\Receipt::installment) @elseif($receipt->payment_head == \App\Receipt::other) @elseif($receipt->payment_head == \App\Receipt::transfer_fee) @else @endif @endif @endforeach
Sr No. Date Receipt No. Customer Unit No. Unit Floor. Unit Block. Payment Mode Payment Head Amount
{{$count++}} {{date('d-m-Y', strtotime($receipt->receipt_date)) }} {{$receipt->receipt_no}} {{$receipt->customer ? $receipt->customer->name : ''}} @if($receipt->property) @if($receipt->property->inventory->registration) {{$receipt->property->inventory->registration ->registrationNo->number}} @endif - {{$receipt->property->inventory->unit_number}} @endif @if($receipt->property) {{$receipt->property->inventory->floor->name}} @endif @if($receipt->property) {{$receipt->property->inventory->floor->unitBlock->name}} @endif CashBank transferChequeAdjustment Down PaymentPossession FeeInstallmentOtherTransfer Fee {{number_format($receipt->amount)}}
Total Received Amount {{number_format($total_amount)}}
@stop @section('js') @stop