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

πŸ“Š Employee Dashboard

@php $cards = [ ['title' => 'All Projects', 'count' => $stats['all'], 'gradient' => 'relative text-white bg-gradient-to-r from-teal-400 via-teal-500 to-teal-600 hover:bg-gradient-to-br rounded-2xl p-6 shadow-xl overflow-hidden hover:scale-105 transition-transform duration-300 ease-in-out cursor-pointer ', 'icon' => ''], ['title' => 'Working', 'count' => $stats['working'], 'gradient' => 'relative text-white bg-gradient-to-r from-teal-400 via-teal-500 to-teal-600 hover:bg-gradient-to-br rounded-2xl p-6 shadow-xl overflow-hidden hover:scale-105 transition-transform duration-300 ease-in-out cursor-pointer ', 'icon' => ''], ['title' => 'Completed', 'count' => $stats['complete'], 'gradient' => 'relative text-white bg-gradient-to-r from-teal-400 via-teal-500 to-teal-600 hover:bg-gradient-to-br rounded-2xl p-6 shadow-xl overflow-hidden hover:scale-105 transition-transform duration-300 ease-in-out cursor-pointer ', 'icon' => ''], ['title' => 'Pause', 'count' => $stats['pause'], 'gradient' => 'relative text-white bg-gradient-to-r from-teal-400 via-teal-500 to-teal-600 hover:bg-gradient-to-br rounded-2xl p-6 shadow-xl overflow-hidden hover:scale-105 transition-transform duration-300 ease-in-out cursor-pointer ', 'icon' => ''], ['title' => 'Issue', 'count' => $stats['issue'], 'gradient' => 'relative text-white bg-gradient-to-r from-teal-400 via-teal-500 to-teal-600 hover:bg-gradient-to-br rounded-2xl p-6 shadow-xl overflow-hidden hover:scale-105 transition-transform duration-300 ease-in-out cursor-pointer ', 'icon' => ''], ['title' => 'Temp Hold', 'count' => $stats['temp_hold'], 'gradient' => 'relative text-white bg-gradient-to-r from-teal-400 via-teal-500 to-teal-600 hover:bg-gradient-to-br rounded-2xl p-6 shadow-xl overflow-hidden hover:scale-105 transition-transform duration-300 ease-in-out cursor-pointer', 'icon' => ''], ['title' => 'User Rating', 'count' => $avgUserRating, 'gradient' =>'relative text-white bg-gradient-to-r from-teal-400 via-teal-500 to-teal-600 hover:bg-gradient-to-br rounded-2xl p-6 shadow-xl overflow-hidden hover:scale-105 transition-transform duration-300 ease-in-out cursor-pointer ', 'icon' => ''], ['title' => 'HR Rating', 'count' => $avgHrRating, 'gradient' => 'relative text-white bg-gradient-to-r from-teal-400 via-teal-500 to-teal-600 hover:bg-gradient-to-br rounded-2xl p-6 shadow-xl overflow-hidden hover:scale-105 transition-transform duration-300 ease-in-out cursor-pointer ', 'icon' => ''], ['title' => 'Fines', 'count' => $fineCount, 'gradient' => 'relative text-white bg-gradient-to-r from-teal-400 via-teal-500 to-teal-600 hover:bg-gradient-to-br rounded-2xl p-6 shadow-xl overflow-hidden hover:scale-105 transition-transform duration-300 ease-in-out cursor-pointer ', 'icon' => ''], ['title' => 'Appreciations', 'count' => $appreciationCount, 'gradient' => 'relative text-white bg-gradient-to-r from-teal-400 via-teal-500 to-teal-600 hover:bg-gradient-to-br rounded-2xl p-6 shadow-xl overflow-hidden hover:scale-105 transition-transform duration-300 ease-in-out cursor-pointer ', 'icon' => ''], ['title' => 'PM Review Rating', 'count' => $avgPmRating, 'gradient' => 'relative text-white bg-gradient-to-r from-teal-400 via-teal-500 to-teal-600 hover:bg-gradient-to-br rounded-2xl p-6 shadow-xl overflow-hidden hover:scale-105 transition-transform duration-300 ease-in-out cursor-pointer ', 'icon' => ''], // NEW ]; @endphp @foreach ($cards as $card)
{{ $card['icon'] }}
{{ $card['title'] }}
{{ $card['count'] }}
@endforeach
@endsection