@extends('layouts.app') @section('content')
| Loan Number | Check Number | Employee Name | National ID | Vote Code | Vote Name | Department | Deduction | Balance Amount | Deduction Amount | Has Stop Pay | Stop Pay Reason | Check Date |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $deduction->loan_number }} | {{ $deduction->check_number }} | {{ $deduction->first_name }} {{ $deduction->middle_name }} {{ $deduction->last_name }} | {{ $deduction->national_id }} | {{ $deduction->vote_code }} | {{ $deduction->vote_name }} | {{ $deduction->department_code }} - {{ $deduction->department_name }} | {{ $deduction->deduction_code }} - {{ $deduction->deduction_description }} | {{ number_format($deduction->balance_amount, 2) }} | {{ number_format($deduction->deduction_amount, 2) }} | {{ $deduction->has_stop_pay ? 'Yes' : 'No' }} | {{ $deduction->stop_pay_reason ?? '-' }} | {{ $deduction->check_date }} |
No monthly deductions found.
@endif