@props([ 'title' => '', 'padding' => 'p-6', 'shadow' => '', 'noBorder' => false, ])
merge([ 'class' => 'rounded-xl bg-card text-card-foreground ' . ($noBorder ? '' : 'border border-border ') . ($shadow ?: 'shadow-card'), ]) }}> @if($title || isset($actions))
@if($title)

{{ $title }}

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