19 lines
558 B
PHP
19 lines
558 B
PHP
@props(['header' => null, 'body' => null])
|
|
<div {{ $attributes->merge(['class' => 'h-full flex flex-col']) }}>
|
|
@if($header)
|
|
<div {{ $header->attributes->merge(['class'=>'bg-gray-700 text-white p-3 font-semibold rounded-t-md']) }}>
|
|
{{ $header }}
|
|
</div>
|
|
@endif
|
|
|
|
@if($body)
|
|
<div {{ $body->attributes->merge(['class'=>'bg-gray-400 text-gray-800 p-3']) }}>
|
|
{{ $body }}
|
|
</div>
|
|
@else
|
|
<div class="bg-gray-400 text-gray-800 p-3">
|
|
{{ $slot }}
|
|
</div>
|
|
@endif
|
|
</div>
|