@extends('admin.layouts.app') @section('title', get_setting('site_name').' | Leave Adjustment') @section('content')
Adjust leave balance for employees and review adjustment history.
| Leave Type | Category | Allowed | Taken | Remaining |
|---|---|---|---|---|
| {{ $row['name'] }} | {{ $row['type'] ?? '—' }} | {{ number_format($row['allowed'], 1) }} | {{ number_format($row['taken'], 1) }} | @php $remaining = (float) $row['remaining']; @endphp {{ number_format($remaining, 1) }} |
| No leave types configured for this employee's group. | ||||
Choose an employee above to view leave summary and adjustment history.