@extends('hr-management.layouts.master') @section('title') Dashboard @endSection @section('main-data')

Welcome, {{ Auth::user()->name }}

Here are your organization insights
Light Mode
{{-- Info Cards --}} @php $infoCards = [ ['label' => 'Total Boards', 'value' => $totalBoards, 'icon' => 'layers', 'bg' => 'bg-primary'], ['label' => 'Active Boards', 'value' => $activeBoards, 'icon' => 'check-circle', 'bg' => 'bg-success'], ['label' => 'Total Members', 'value' => $totalMembers, 'icon' => 'users', 'bg' => 'bg-warning'], ['label' => 'Total Cards', 'value' => $totalCards, 'icon' => 'credit-card', 'bg' => 'bg-info'], ]; @endphp @foreach($infoCards as $card)

{{ $card['label'] }}

{{ $card['value'] }}

@endforeach {{-- Charts --}}

Cards Created (Last 7 Days)

Boards Created (Last 8 Weeks)

New Members (Last 12 Months)

Cards by List

{{-- Charts Script --}}
@endSection