@extends('layouts.master') @section('content')
| # | Employee | Total Loan | Paid | Balance | Monthly Ded. | Start Date | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $loan->employee->first_name }} {{ $loan->employee->last_name }} | {{ number_format($loan->total_amount, 0) }} | {{ number_format($loan->paid_amount, 0) }} | {{ number_format($loan->balance, 0) }} | {{ number_format($loan->monthly_deduction, 0) }} | {{ \Carbon\Carbon::parse($loan->start_date)->format('d/m/Y') }} | {{ ucfirst($loan->status) }} | |
| No loan records found. | ||||||||