@props([ 'badge', 'title', 'description' => null, 'stats' => [], ])
merge(['class' => 'relative overflow-hidden rounded-2xl border border-slate-200 bg-white']) }}>
{{ $badge }}

{{ $title }}

@if ($description)

{{ $description }}

@endif @isset($actions)
{{ $actions }}
@endisset
@if (count($stats) > 0)
@foreach ($stats as $stat)

{{ $stat['value'] }}

{{ $stat['label'] }}

@endforeach
@endif