@extends('layouts.user') @section('title', __('hr.daily_attendance')) @section('page_title', __('hr.daily_attendance')) @section('breadcrumb', __('hr.hr_attendance_daily')) @section('content')
{{-- Top Date Filter --}}

{{ __('hr.attendance_entry') }}

{{ __('hr.monthly_and_daily_roz_employee_attendance_add') }}

@csrf {{-- Monthly Employees --}}

{{ __('hr.monthly_employees') }}

{{ __('hr.present_absent_leave_holiday_overtime') }}

@forelse($monthlyEmployees as $employee) @empty @endforelse
{{ __('hr.employee') }} {{ __('hr.code') }} {{ __('hr.status') }} {{ __('hr.overtime_hours') }} {{ __('hr.note') }}
{{ $employee->name }} {{ $employee->employee_code }} @if($employee->overtime_eligible) @else
@endif
{{ __('hr.no_monthly_employee_pending_for_today') }}
{{-- Daily Roz Employees --}}

{{ __('hr.daily_roz_employees') }}

{{ __('hr.present_absent_holiday_roz_amount') }}

@forelse($dailyRozEmployees as $employee) @empty @endforelse
{{ __('hr.employee') }} {{ __('hr.code') }} {{ __('hr.status') }} {{ __('hr.roz') }} {{ __('hr.note') }}
{{ $employee->name }} {{ $employee->employee_code }}
{{ __('hr.no_daily_roz_employee_pending_for_today') }}
@endsection