{{-- Stat Card Component Usage: @include('components.dashboard.stat-card', [ 'title' => 'Total Applications', 'value' => '123', 'subtitle' => 'All time', 'icon' => 'document-text', // heroicon name 'color' => 'blue' // blue, teal, purple, emerald, etc. ]) --}}

{{ $title }}

{{ $value }}

{{ $subtitle ?? '' }}

@if(isset($icon))
@switch($icon) @case('document-text') @break @case('chart-bar') @break @case('clock') @break @case('briefcase') @break @default @endswitch
@endif