@extends('layouts.admin') @section('title', 'Attendance Management') @section('content')

Attendance Management

Back to Dashboard
@if(session('status'))
{{ session('status') }}
@endif
Employees
{{ $employeeCount ?? 0 }}
Branches
{{ $branchCount ?? 0 }}
Mark Attendance
@csrf
Recent Employees
@forelse(($recentEmployees ?? []) as $emp) @empty @endforelse
Name Email Branch Joined
{{ $emp->name ?? '-' }} {{ $emp->email ?? '-' }} {{ $emp->branch->name ?? '-' }} {{ optional($emp->created_at)->format('Y-m-d') }}
No recent employees found.
@endsection