@extends('layouts.staff-new') @section('content')

Select Period:

Collections as at {{ @config('unicredit.months')[$month - 1] }}, {{ $year}}


@forelse($plans as $plan) @php $loan = $plan->loan; $borrower = $loan->user; $staff = $loan->collector_type == 'AppModelsUser' ? 'no staff' : $loan->collector @endphp @empty @endforelse
Mandate ID Due Amount Borrower Staff Due Date Status
  {{ $loan->mandateId }} ₦ {{ number_format($plan->interest + $plan->principal + $plan->management_fee, 2) }}   {{ $borrower->name }} {{$staff->name ?? 'No staff'}} {{$plan->payday}} @if($plan->status) Paid - {{ $plan->collection_mode }} @else {{ $plan->status_message ?? 'No Message'}} @endif
Data Unavailable
@endsection @section('page-js') @endsection