{{-- div for Company --}} {{$data['company']->name}}
{{$data['company']->address}}
{{'Reporting Branch: '. $data['branchName']}}
MRA Half Yearly Savings Report
Reporting Period : {{ $data['currentQuarterStartDate'] }} to {{ $data['currentQuarterEndDate'] }} Print Date : 2026-07-22
{{-- end report info div --}}
{{-- Branch wise Savings Information --}}
Branch wise Savings Information
Branch : {{ $data['branchName'] }}
@php $grandTotal_no_of_savers_male = 0; $grandTotal_no_of_savers_female = 0; $grandTotal_no_of_savers_total = 0; $grandTotal_openingBalance = 0; $grandTotal_deposit = 0; $grandTotal_withdraw = 0; $grandTotal_interestPayable = 0; $grandTotal_interestPaid = 0; $grandTotal_closingBalance = 0; @endphp @foreach($data['savingsInfos'] as $key => $value) @php $value = (object) $value; @endphp @if($key == 0) @elseif($key == 4) @endif @if($value->scheme != 'sub-total') @else @endif @php if($value->scheme == 'sub-total'): $grandTotal_no_of_savers_male += (int) $value->no_of_savers_male; $grandTotal_no_of_savers_female += (int) $value->no_of_savers_female; $grandTotal_no_of_savers_total += (int) $value->no_of_savers_total; $grandTotal_openingBalance += (float) $value->openingBalance; $grandTotal_deposit += (float) $value->deposit; $grandTotal_withdraw += (float) $value->withdraw; // $grandTotal_withdraw += (float) $value->withdraw + (float) $value->interestPaid; $grandTotal_interestPayable += (float) $value->interestPayable; $grandTotal_interestPaid += (float) $value->interestPaid; $grandTotal_closingBalance += (float) $value->closingBalance; // $grandTotal_closingBalance += floatVal($value->openingBalance) + floatVal($value->deposit) + floatVal($value->interestPaid) - ( floatVal($value->withdraw) + floatVal($value->interestPaid) ); // $grandTotal_closingBalance += floatVal($value->openingBalance) + floatVal($value->deposit) - floatVal($value->withdraw) ; endif; @endphp @endforeach
Type Name of Savings/Deposit Scheme No. of Depositors/Savers Savings Balance at the Start of this Half Year Savings Collection in this Half Year Savings Withdraw/Refund/Adjustment in this Half Year Interest Payable in this Half Year Total Interest Paid in this Half Year Deposit/Savings Balance Declared Interest Rate (%)
Male Female Total
1 2 3 = 1+2 4 5 6 7 8 9 = 4 + 5 + 8 - 6 10
Savers {{ ucfirst($value->type) }} in reporting dateSavers {{ ucfirst($value->type) }} in reporting date{{ ucfirst($value->scheme) }}{{ $value->maleSaver }}  *({{ $value->no_of_savers_male }}) {{ $value->femaleSaver }}  *({{ $value->no_of_savers_female }}) {{ $value->maleSaver + $value->femaleSaver }}  *({{ $value->no_of_savers_total }}) {{ $value->no_of_savers_male }} {{ $value->no_of_savers_female }} {{ $value->no_of_savers_total }} {{ number_format( $value->openingBalance ) }} {{ number_format( $value->deposit ) }} {{ number_format( $value->withdraw ) }} {{ number_format( $value->interestPayable ) }} {{ number_format( $value->interestPaid ) }} {{ number_format( $value->closingBalance ) }} @if($value->scheme != 'sub-total'){{ $value->interestRate }}% @endif
Grand total {{ $grandTotal_no_of_savers_male }} {{ $grandTotal_no_of_savers_female }} {{ $grandTotal_no_of_savers_total }} {{ number_format($grandTotal_openingBalance) }} {{ number_format($grandTotal_deposit) }} {{ number_format($grandTotal_withdraw) }} {{ number_format($grandTotal_interestPayable) }} {{ number_format($grandTotal_interestPaid) }} {{ number_format($grandTotal_closingBalance) }}
{{-- Savings Information on Savings Size --}}
Savings Information on Savings Size
Size of Savings Number of Savers Balance of Savings
Up to 2000 TK. @if(isset( $data['savingSizeInfos'])) {{ $data['savingSizeInfos']->_below_2000_number_of_savers }} @endif @if(isset( $data['savingSizeInfos'])) {{ number_format( $data['savingSizeInfos']->_below_2000_balance ) }} @endif
2001 TK. to 5000 TK. @if(isset( $data['savingSizeInfos'])) {{ $data['savingSizeInfos']->_2001_to_5000_number_of_savers }} @endif @if(isset( $data['savingSizeInfos'])) {{ number_format( $data['savingSizeInfos']->_2001_to_5000_balance ) }} @endif
5001 TK. to 10000 TK. @if(isset( $data['savingSizeInfos'])) {{ $data['savingSizeInfos']->_5001_to_10000_number_of_savers }} @endif @if(isset( $data['savingSizeInfos'])) {{ number_format( $data['savingSizeInfos']->_5001_to_10000_balance ) }} @endif
10001 TK. to 20000 TK. @if(isset( $data['savingSizeInfos'])) {{ $data['savingSizeInfos']->_10001_to_20000_number_of_savers }} @endif @if(isset( $data['savingSizeInfos'])) {{ number_format( $data['savingSizeInfos']->_10001_to_20000_balance ) }} @endif
20001 TK. and Above @if(isset( $data['savingSizeInfos'])) {{ $data['savingSizeInfos']->_above_200001_number_of_savers }} @endif @if(isset( $data['savingSizeInfos'])) {{ number_format( $data['savingSizeInfos']->_above_200001_balance ) }} @endif
Grand total @if(isset( $data['savingSizeInfos'])) {{ $grandTotal_no_of_savers_total }} @endif @if(isset( $data['savingSizeInfos'])) {{ number_format($grandTotal_closingBalance) }} @endif