@extends('layouts.app') @section('content')

Deduction Details Search

@if(isset($details) && !empty($details)) @foreach ($details as $detail) @endforeach
Check Date Name Deduction Type Deduction Description Deduction Amount Department
{{ $detail['checkDate'] ?? 'N/A' }} {{ $detail['firstName'] ?? 'N/A' }} {{ $detail['middleName'] ?? '' }} {{ $detail['lastName'] ?? '' }} {{ $detail['deductionCode'] ?? 'Unknown' }} {{ $detail['deductionDesc'] ?? 'No description' }} {{ number_format($detail['deductionAmount'] ?? 0, 2) }} {{ $detail['deptName'] ?? 'N/A' }}
@else

No details available for the specified date.

@endif
@endsection