@extends('layouts.app') @section('content') {{-- Modern Breadcrumb --}} {{-- Modern Page Header --}}

Salary Loans

Track and manage salary loan deductions

{{-- Filter Button --}}
{{-- SALARY LOAN LIST TABLE --}}
@forelse($salaryLoans as $index => $record) @empty @endforelse
SN
Check Number
Name
Monthly Salary
Deduction Amount
Balance Amount
Description
Vote Code
Department
Month
Actions
{{ $salaryLoans->firstItem() + $index }}
{{ $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, 0) }}
No salary loans found

No salary loan records available for the selected filters.

{{-- PAGINATION FOOTER --}} @if($salaryLoans->hasPages()) @endif
{{-- MODERN FILTER MODAL --}} @push('styles') @endpush @endsection