@extends('layouts.appv2') @section('content') {{-- Table index start --}} @foreach($users as $users)

Welcome, {{$users -> userfirstname}}

@endforeach

Attendances

@foreach($departmentNames as $index => $departmentName)
{{ $departmentName }}: {{ isset($checkins[$departmentName]) ? $checkins[$departmentName] : 0 }} / {{ $departmentCounts[$index] }}
@endforeach

Total Staff

{{$totalemployee}} Staff

Leaving Staff Today

@if(!empty($leavetoday)) {{$leavetoday}} Staff @else No staff leave today @endif

Statistic Graph

Staff in Department

@endsection