@props(['ucfirst'])
@php
$ucfirst = $ucfirst ?? false;
$classes = 'block block-simple bg-gray-200 rounded-md p-4 flex flex-col space-y-1';
@endphp
merge(['class' => $classes]) }}>
@if ($attributes['title'])
@if ($ucfirst)
{{ Str::ucfirst($attributes['title']) }}
@else
{{ Str::lower($attributes['title']) }}
@endif
@endif
{{ $slot }}