@props([ 'title' => '', 'icon' => '', 'variant' => 'default', 'borderColor' => 'border-light', 'headerClass' => '', 'bodyClass' => '', 'iconColor' => 'text-primary' ]) @php $classes = [ 'section-card', 'border', $borderColor, 'rounded-3', 'h-100', 'bg-white' ]; @endphp
merge(['class' => implode(' ', $classes)]) }}> @if($title || $icon)
@if($icon)
@endif @if($title)
{{ $title }}
@endif
@isset($headerActions)
{{ $headerActions }}
@endisset

@endif
{{ $slot }}