@extends('layouts.app') @section('title') Received Amount Statement @stop @section('breadcrumb') @stop @section('css') @stop @section('content')

@foreach($project_names as $key => $project_name) {{ $project_name }} @if($key < count($project_names) - 1) , @endif @endforeach

Received Amount Statement

{{ date('d/m/Y', strtotime($from_date)) }} - {{ date('d/m/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( $receipt->property->inventory->floor) @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 @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) @if ($receipt->property->inventory) {{ $receipt->property->inventory->floor ? $receipt->property->inventory->floor->name : '' }} @endif @endif @if ($receipt->property) {{ $receipt->property->inventory->floor ? $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