@extends('layouts.app') @section('title', 'Dashboard') @section('content')

Total Employees

{{ $totalEmployees }}

Total Shifts

{{ $totalShifts }}

Published Shifts

{{ $publishedShifts }}

Open Shifts

{{ $openShifts }}

Recent Activities

    @forelse($recentActivities as $activity)
  • {{ $activity }}
  • @empty
  • No recent activities
  • @endforelse

Department Shift Distribution

@push('scripts') @endpush @endsection