@extends('layouts.app') @section('content') {{-- PAGE HEADER WITH BREADCRUMB --}}
{{-- IMPROVED FILTER CARD --}}| SN | Check No. | Name | Monthly Salary | Deduction Amount | Department | Check Date |
|---|---|---|---|---|---|---|
| {{ ($deductions->currentPage() - 1) * $deductions->perPage() + $loop->iteration }} | {{ $deduction->checkNumber }} | {{ trim("{$deduction->firstName} {$deduction->middleName} {$deduction->lastName}") }} | {{ number_format($deduction->monthlySalary, 2) }} | {{ number_format($deduction->deductionAmount, 2) }} | {{ $deduction->deptName }} | {{ \Carbon\Carbon::parse($deduction->checkDate)->format('d-m-Y') }} |
|
No records found. |
||||||