Your Work Hours Updated

Dear {{ $user->first_name }},

Your work schedule has been updated by your administrator. Please take note of your new check-in and check-out times effective immediately.

Previous Times

Check-in
{{ $oldCheckIn ? \Carbon\Carbon::parse($oldCheckIn)->format('h:i A') : 'Not set' }}
Check-out
{{ $oldCheckOut ? \Carbon\Carbon::parse($oldCheckOut)->format('h:i A') : 'Not set' }}

Your New Times

Check-in
{{ $user->profile?->check_in_time ? \Carbon\Carbon::parse($user->profile->check_in_time)->format('h:i A') : 'Not set' }}
Check-out
{{ $user->profile?->check_out_time ? \Carbon\Carbon::parse($user->profile->check_out_time)->format('h:i A') : 'Not set' }}

📌 Important Information

@if($user->profile)

Overtime Allowed: {{ $user->profile->allow_overtime ? 'Yes' : 'No' }}

@if($user->profile->allow_overtime && $user->profile->overtime_monthly_limit)

Monthly Overtime Limit: {{ $user->profile->overtime_monthly_limit }} minutes

@endif

Flexible Hours: {{ $user->profile->flexible_hours ? 'Yes' : 'No' }}

@endif

Effective Date: Immediately

Please ensure you check in and check out according to your new schedule. Late arrivals will be recorded in the attendance system.

View Attendance System