@props([ 'id' => null, 'type' => 'info', 'title' => null, 'description' => null, 'icon' => null, 'formAction' => null, 'formMethod' => 'POST', 'formAttrs' => [], 'hasForm' => false, ]) @php $icon ??= match ($type) { 'success' => 'ti ti-circle-check', 'danger' => 'ti ti-alert-triangle', 'warning' => 'ti ti-alert-circle', default => 'ti ti-info-circle', }; @endphp merge(['size' => 'sm', 'closeButton' => false]) }} :body-attrs="['class' => 'text-center py-4']" :form-action="$formAction" :form-method="$formMethod" :form-attrs="$formAttrs" :has-form="$hasForm" >
@if ($title)

{!! $title !!}

@endif {{ $slot }} {{ $footer ?? null }}