@extends('layouts.staff-new') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Loans Received
@forelse($loans as $loan) @empty @endforelse
Loan Owner Reference Amount Monthly Repayment Tenure Loan Status Manage
{{$loop->iteration}} {{$loan->user->name}}
{{$loan->reference}}
₦ {{$loan->amount}}
{{$loan->emi()}}
{{$loan->due_date->diffInMonths($loan->created_at)}} Months ({{$loan->due_date->diffForHumans()}})
@if($loan->status == 1) @elseif($loan->status == 2) @else @endif View Loan
You have not received any loans yet
@endsection @section('page-js') @endsection