No leave types. Click "Add Leave Type" to create one.
@endforelse
How it works:
• Days/Month: Maximum leaves allowed per month (e.g., 2 sick leaves per month)
• Days/Year: Maximum leaves allowed per year (e.g., 12 annual leaves per year)
• Set to 0 for unlimited leaves
• Staff can still apply even if limit exceeded - it just shows a warning
{{-- ============================================== --}}
{{-- WORK TYPES TAB (for Extra Work / Timesheet) --}}
{{-- ============================================== --}}
Work Types
Name
Color
Multiplier
Status
Actions
@forelse($timesheetTypes ?? [] as $type)
{{ $type->name }}
{{ $type->color ?? '#3b82f6' }}
{{ $type->multiplier ?? 1 }}x
@if($type->status)
Active
@else
Inactive
@endif
@empty
No work types defined. Add one to get started.
@endforelse
About Work Types:
• Work types are used for extra work / overtime assignments
• Multiplier: Pay rate multiplier (e.g., 1.5x for overtime, 2x for holidays)
• Standard work has 1x multiplier