@props([ 'id', 'title' => null, 'maxWidth' => '2xl', 'onClose' => null, ]) @php $maxWidths = [ 'sm' => 'max-w-sm', 'md' => 'max-w-md', 'lg' => 'max-w-lg', 'xl' => 'max-w-xl', '2xl' => 'max-w-2xl', '5xl' => 'max-w-5xl', '7xl' => 'max-w-7xl', 'full' => 'max-w-full mx-4', ]; $maxWidthClass = $maxWidths[$maxWidth] ?? $maxWidths['2xl']; @endphp
merge(['class' => 'admin-modal fixed inset-0 w-screen h-screen bg-slate-950/85 backdrop-blur-md flex items-center justify-center z-[1000] opacity-0 pointer-events-none transition-opacity duration-300 [&.active]:opacity-100 [&.active]:pointer-events-auto']) }}>
@if($title || isset($headerActions))
@if($title)

{{ $title }}

@endif
@if(isset($headerActions)) {{ $headerActions }} @endif
@endif
{{ $slot }}