@extends('layouts.dashboard.adminapp') @section('title', 'Leave Balance Management') @section('content')
| Employee ID | Employee Name | Department | CL Balance | SL Balance | PL Balance | CL Used | SL Used | PL Used |
|---|---|---|---|---|---|---|---|---|
| {{ $balance->employee->employee_id ?? '-' }} | {{ $balance->employee->name ?? '-' }} | {{ $balance->employee->department ?? '-' }} | {{ $balance->cl_balance ?? 0 }} | {{ $balance->sl_balance ?? 0 }} | {{ $balance->pl_balance ?? 0 }} | {{ $balance->cl_used ?? 0 }} | {{ $balance->sl_used ?? 0 }} | {{ $balance->pl_used ?? 0 }} |