@extends('layouts.app') @section('content')
| Check No. | Name | Monthly Salary | Deduction Amount | Department | Check Date |
|---|---|---|---|---|---|
| {{ $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') }} |