@props([
'key' => 'drawer',
'showClose' => true,
'closeOnEscape' => true,
'title' => null,
'subtitle' => null
])
merge(['class' => 'min-h-screen w-full md:w-3/4 xl:w-3/5 rounded-none px-8 transition overflow-y-scroll']) }}
>
@if($title)
{!! strip_tags($title) !!}
@endif
@if($subtitle)
{!! strip_tags($subtitle) !!}
@endif
@if ($showClose)
@endif
{{ $slot }}