@props([ 'name', 'title', 'message' => null, 'action', 'method' => 'POST', 'confirmLabel' => 'Confirm', 'cancelLabel' => 'Cancel', 'variant' => 'danger', ]) @php $confirmBtnClass = $variant === 'danger' ? 'bg-red-600 hover:bg-red-700' : 'bg-indigo-600 hover:bg-indigo-700'; $iconWrapClass = $variant === 'danger' ? 'bg-red-100 text-red-600' : 'bg-indigo-100 text-indigo-600'; @endphp @if(isset($trigger)) {{ $trigger }} @endif
@if($variant === 'danger') @else @endif

{{ $title }}

@if($message)

{{ $message }}

@endif @isset($details)
{{ $details }}
@endisset
@csrf @if(strtoupper($method) !== 'POST') @method($method) @endif @isset($fields) {{ $fields }} @endisset