@props(['title' => null, 'description' => null, 'footer' => null])
merge(['class' => 'bg-white border border-zinc-200 rounded-sm shadow-sm overflow-hidden']) }}>
@if($title || $description || isset($actions))
@if($title)
{{ $title }}
@endif
@if($description)
{{ $description }}
@endif
@if(isset($actions))
{{ $actions }}
@endif
@endif
{{ $slot }}
@if($footer)
{{ $footer }}
@endif