@extends('layouts.app') @section('content')
Salary Loans
@forelse($salaryLoans as $index => $record) @empty @endforelse
SN
Check Number
Name
Monthly Salary
Deduction Amount
Balance Amount
Deduction Description
Vote Code
Department
Month
Actions
{{ $index + 1 }}
{{ $record->checkNumber }} {{ $record->firstName }} {{ $record->middleName }} {{ $record->lastName }} TSh {{ number_format($record->monthlySalary, 2) }} TSh {{ number_format($record->deductionAmount, 2) }} TSh {{ number_format($record->balanceAmount, 2) }} {{ $record->deductionDesc }} {{ $record->voteCode }} {{ $record->deptName }} {{ number_format($record->month, 2) }}
No salary loans found

No salary loan records available at this time.

@push('scripts') @endpush @endsection