@extends('layouts.app') @section('content')
| 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) }} | @if($guarantor->guarantee_status =='pending')Pending | @elseif(($guarantor->guarantee_status =='approved'))Approved | @elseif(($guarantor->guarantee_status =='rejected'))Rejected | @endif
|