@php
$crmStats = [
[
'label' => 'Total Pendapatan',
'value' => 'Rp 842M',
'growth' => '+24%',
'icon' => 'ti-report-money',
'bg' => 'from-emerald-500/20 via-emerald-500/5 to-transparent',
'color' => 'emerald'
],
[
'label' => 'Deal Aktif',
'value' => '156',
'growth' => '+8',
'icon' => 'ti-briefcase',
'bg' => 'from-indigo-500/20 via-indigo-500/5 to-transparent',
'color' => 'indigo'
],
[
'label' => 'Konversi Lead',
'value' => '12.4%',
'growth' => '+2.1%',
'icon' => 'ti-target-arrow',
'bg' => 'from-rose-500/20 via-rose-500/5 to-transparent',
'color' => 'rose'
],
[
'label' => 'Kepuasan CSAT',
'value' => '4.9/5',
'growth' => '+0.2',
'icon' => 'ti-stars',
'bg' => 'from-amber-500/20 via-amber-500/5 to-transparent',
'color' => 'amber'
],
];
@endphp
@foreach($crmStats as $stat)
{{-- Custom Gradient Background Layer --}}
{{-- Decorative Pattern --}}
{{ $stat['label'] }}
{{ $stat['value'] }}
@endforeach