@extends('layouts.app') @section('content')
Track and analyze deduction differences across periods
| Check Number | Employee Name | {{ \Carbon\Carbon::parse($startDate)->format('M Y') }} Deduction | {{ \Carbon\Carbon::parse($endDate)->format('M Y') }} Deduction | Variance | Balance | Description | Period | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $data['check_number'] }} | {{ $data['name'] }} | {{ number_format((float)($data['deduction_month_1'] ?? 0), 2) }} | {{ number_format((float)($data['deduction_month_2'] ?? 0), 2) }} | @php $difference = (float)($data['difference'] ?? 0); $indicator = $difference > 0 ? '↑' : ($difference < 0 ? '↓' : '='); @endphp {{ $indicator }} {{ number_format(abs($difference), 2) }} | {{ number_format((float)($data['balance'] ?? 0), 2) }} | {{ $data['deduction_description'] }} | {{ $data['month_computed'] }} | View |
No Variance Data FoundTry adjusting your filters |
||||||||