@extends('layouts.app') @section('content')

Guarantors List


My Guarantors
@foreach($guarantors as $guarantor) @if($guarantor->created_by == Auth()->user()->id) @if($guarantor->guarantee_status =='pending') @elseif(($guarantor->guarantee_status =='approved')) @elseif(($guarantor->guarantee_status =='rejected')) @endif @endif @endforeach
Member Number Member Name Ref No. Description Loan Amount Guaranteed Amount Guarantee Status Action
{{ $guarantor->user->member_number}} {{ $guarantor->user->fname}} {{ $guarantor->user->lname}} {{$guarantor->loan->loan_no}} {{ $guarantor->loan->loanType->name }} {{ number_format($guarantor->loan->applied_amount) }} {{ number_format($guarantor->guarantee_amount) }}PendingApprovedRejected
@endsection