@props([ 'id', 'title' => null, 'description' => null, 'width' => 'lg', 'side' => 'right', 'onClose' => null, ]) @php $widths = [ 'sm' => 'max-w-sm', 'md' => 'max-w-md', 'lg' => 'max-w-lg', 'xl' => 'max-w-xl', '2xl' => 'max-w-2xl', '3xl' => 'max-w-3xl', 'full' => 'max-w-full', ]; $widthClass = $widths[$width] ?? $widths['lg']; $isLeft = $side === 'left'; $justifyClass = $isLeft ? 'justify-start' : 'justify-end'; $translateClosed = $isLeft ? '-translate-x-full' : 'translate-x-full'; $borderClass = $isLeft ? 'border-r' : 'border-l'; @endphp
{{ $description }}
@endif