@extends('layouts.dashboard.adminapp') @section('title', 'Employee Attendance') @section('styles') @endsection @section('content')

UEPL / Employee Attendance

day, 00 month 0000
Employee Attendance Records
@foreach ($data as $row) @endforeach
Employee Name Employee ID Gender DOB DOJ Department Designation Days Worked Sundays Holidays Leave Paid Days Absent 1st Shifts Night Shifts OT Shortage Actions
{{ $row->employee_name }} {{ $row->employee_id }} {{ $row->gender }} {{ $row->date_of_birth }} {{ $row->date_of_joining }} {{ $row->department }} {{ $row->designation }} {{ $row->days_worked }} {{ $row->sundays_eligible }} {{ $row->holidays }} {{ $row->leave_enjoyed }} {{ $row->total_paid_days }} {{ $row->absent }} {{ $row->first_shifts }} {{ $row->night_shifts }} {{ $row->ot_hours }} {{ $row->shortage_hours }}
@php $fields = [ 'employee_name', 'employee_id', 'gender', 'date_of_birth', 'date_of_joining', 'department', 'designation', 'days_worked', 'sundays_eligible', 'holidays', 'leave_enjoyed', 'total_paid_days', 'absent', 'first_shifts', 'night_shifts', 'ot_hours', 'shortage_hours', ]; $numericFields = [ 'days_worked', 'sundays_eligible', 'holidays', 'leave_enjoyed', 'total_paid_days', 'absent', 'first_shifts', 'night_shifts', 'ot_hours', 'shortage_hours', ]; @endphp @endsection @section('scripts') @endsection