@extends('layouts.dashboard.superadminapp') @section('title', 'Employee Daily Attendance') @section('styles') @endsection @section('content')
| Date | Employee ID | Employee Name | Check In | Break Out | Break In | Check Out | Working Hours | OT (hrs) | Shortage (hrs) |
|---|---|---|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($row->date)->format('d-m-Y') }} | {{ $row->employee_id }} | {{ $row->employee_name }} | {{ $row->check_in }} | {{ $row->break_out }} | {{ $row->break_in }} | {{ $row->check_out }} | {{ $workDuration ?? '-' }} | @if ($ot > 0) {{ decimalToHoursMinutes($ot) }} @else 00:00 @endif | @if ($shortage > 0) {{ decimalToHoursMinutes($shortage) }} @else 00:00 @endif |