@extends('layouts.nav') @section('title', 'Rent Collection Report') @section('content')

Rent Collection Report

@if ($errors->any())
@endif
Report Filters
@csrf
Refresh
@if(request()->isMethod('post')) @if($summaryData->isNotEmpty())
Rent Collection Report from {{ $fromDate }} to {{ $toDate }} (Currency: {{ $currnames }})
@foreach ($summaryData as $data) @endforeach
Reference Date Tenant Code Name Floor Rooms Space (sqm) Amount Paid ({{ $currnames }}) Discount Total ({{ $currnames }})
{{ $data->refference }}/ {{ $data->batch }} {{ \Carbon\Carbon::parse($data->entrydate)->format('d/m/Y') }} {{ $data->tenantcode }} {{ $data->tenant_name }} {{ $data->floor }} {{ $data->rooms }} {{ $data->space }} {{ $data->dr }} {{ $data->discount }} {{ $currnames }}{{ number_format($data->dr, 2) }}
Grand Total {{ $currnames }}{{ number_format($grandTotal, 2) }}
@else

No rent collection data found for the selected currency and date range.

@endif @endif
@endsection