@props(['title', 'subtitle' => null, 'icon' => null, 'iconColor' => 'indigo', 'animate' => 'float'])
merge(['class' => 'mb-6 lg:mb-8 animate-slide-up']) }}>
@if ($icon) @php $iconBoxClass = match ($iconColor) { 'emerald' => 'icon-box-emerald', 'amber' => 'icon-box-amber', 'red' => 'icon-box-red', 'violet' => 'icon-box-violet', 'cyan' => 'icon-box-cyan', default => 'icon-box-indigo', }; $animClass = match ($animate) { 'pulse' => 'animate-icon-pulse', 'spin' => 'animate-icon-spin-slow', default => 'animate-icon-float', }; @endphp
@endif

{{ $title }}

@if ($subtitle)

{{ $subtitle }}

@endif
@if (isset($actions))
{{ $actions }}
@endif