@php use Illuminate\View\ComponentSlot; @endphp
@props(['header' => null, 'body' => null])
@if($header instanceof ComponentSlot)
attributes->merge(['class'=>'bg-gray-700 text-white p-3 font-semibold rounded-t-md']) }}>
{{ $header }}
@endif
@if($body)
attributes->merge(['class'=>'bg-gray-400 text-gray-800 p-3']) }}>
{{ $body }}
@else
{{ $slot }}
@endif