Name Of Institution |
{{ getApplicationName() }} |
MSP Code |
M100 |
COMPLAINT REPORT FOR THE QUARTER ENDED:
(DD/MM/YYYY) |
{{ $botReport->period_to->format('d/m/Y') }} |
BOT FORM MSP2-06: To be submitted Quarterly
|
|
sno
Particulars
Number
Nature Of
Complaints
@foreach ($botReport?->complaintCategories() as $complaintCategory)
{{ $complaintCategory?->name }}
@endforeach
1
Number of complaints at the beginning of the quarter
@foreach ($botReport?->totalComplaintsAtQuarterBeginning() as $key => $value)
{{ $value }}
@endforeach
2
New complaints received during the quarter
@foreach ($botReport?->newComplaintsDuringQuarter() as $key => $value)
{{ $value }}
@endforeach
3
Complaints resolved during the quarter by the institution
@foreach ($botReport?->resolvedComplaintsDuringQuarter() as $key => $value)
{{ $value }}
@endforeach
4
Complaints resolved during the quarter by other parties (eg Courts, Bank of Tanzania, FCC)
@foreach ($botReport?->resolvedComplaintsByOtherPartiesDuringQuarter() as $key => $value)
{{ $value }}
@endforeach
5
Unresolved complaints at the end of the quarter(1+2-3-4)
@foreach ($botReport?->resolvedComplaintsByOtherPartiesDuringQuarter() as $key => $value)
{{ $value }}
@endforeach
@foreach ($botReport?->unresolvedComplaintsByReferee() as $referee => $complaintTotals)
{{ $loop->index + 6 }}
Unresolved complaints referred to {{ $referee }}
@foreach ($complaintTotals as $complaint => $total)
{{ $total }}
@endforeach
@endforeach