@extends('layouts.master') @section('main_content')

Employee Attendance Report

Employee Details
  • User Name: {{ $employee->user->username ?? 'N/A' }}
  • Department: {{ $employee->information->department->department_name ?? 'N/A' }}
  • Designation: {{ $employee->information->designation->designation_name ?? 'N/A' }}
Yearly Attendance
  • Total Working Days: {{ $employeeSummaries[$employee->user_id]['yearly']['total_working_days'] ?? 'N/A' }}
  • Present: {{ $employeeSummaries[$employee->user_id]['yearly']['total_present'] ?? 'N/A' }}
  • Absent: {{ $employeeSummaries[$employee->user_id]['yearly']['total_absent'] ?? 'N/A' }}
Monthly Attendance
  • Total Working Days: {{ $employeeSummaries[$employee->user_id]['monthly']['total_working_days'] ?? 'N/A' }}
  • Present: {{ $employeeSummaries[$employee->user_id]['monthly']['total_present'] ?? 'N/A' }}
  • Absent: {{ $employeeSummaries[$employee->user_id]['monthly']['total_absent'] ?? 'N/A' }}
Attendance Date In Time Out Time Status Action
@endsection @push('script') @endpush