{{$building->name}}
Service Charge Detail
{{$yearmonth}}
Expenses
| Expense Head |
Payment Amount |
@if(!empty($expenses))
@php($totalExpense = 0)
@foreach($expenses as $expense)
@php($totalExpense += $expense->expense_amount)
| {{ $expense->expenseHead->name }} |
{{ $expense->expense_amount }} |
@endforeach
| Total | {{$totalExpense}} |
@endif
Bill Details
| Flat |
Owner |
Date |
Amount |
Receipt |
@if(!empty($collections))
@php($totalCollection = 0)
@foreach($collections as $collection)
@php($totalCollection += $collection->amount)
| {{ $collection->flat->flat_number }} |
{{ $collection->flat->flatOwner->name }} |
{{ $collection->received_date }} |
{{ $collection->amount }} |
|
@endforeach
| Total |
{{$totalCollection}} |
|
@endif
| Current Month Balance |
{{$monthWiseBalance}} |
Service Charge |
{{$totalExpense}} |