@php
$todaysPresentCount = $todayPunchData->where('check_in', '!=', '0000-00-00 00:00:00')->count();
$todaysPresentPercent = $totalEmployees ? round(($todaysPresentCount / $totalEmployees) * 100) : 0;
$todaysAbsentCount = $totalEmployees - $todaysPresentCount;
@endphp