Welcome, {{ auth()->user()->name }}

Employee ID: {{ auth()->user()->employee_id }}
Email: {{ auth()->user()->email }}
Designation: {{ auth()->user()->designation }}
Check In

Mark your attendance start

@csrf
Check Out

Mark your attendance end

@csrf
Attendance History
@if($attendances->count()) @foreach($attendances as $attendance) @endforeach @else @endif
Date Check In Check Out Status
{{ \Carbon\Carbon::parse($attendance->date)->format('d-m-Y') }} {{ $attendance->check_in ? \Carbon\Carbon::parse($attendance->check_in)->format('h:i A') : '-' }} {{ $attendance->check_out ? \Carbon\Carbon::parse($attendance->check_out)->format('h:i A') : '-' }} @if($attendance->check_in && $attendance->check_out) Present @else Incomplete @endif
No records available