@props([ 'title' => 'Confirmer la suppression', 'message' => 'Êtes-vous sûr de vouloir effectuer cette action ?', 'confirmText' => 'Confirmer', 'cancelText' => 'Annuler', 'type' => 'danger', // danger, warning, info 'action' => '', 'method' => 'DELETE', 'id' => 'confirm-modal' ]) @php $iconColors = [ 'danger' => 'bg-red-100 text-red-600 dark:bg-red-900/30 dark:text-red-400', 'warning' => 'bg-yellow-100 text-yellow-600 dark:bg-yellow-900/30 dark:text-yellow-400', 'info' => 'bg-blue-100 text-blue-600 dark:bg-blue-900/30 dark:text-blue-400', ]; $buttonColors = [ 'danger' => 'bg-red-600 hover:bg-red-700 focus:ring-red-500', 'warning' => 'bg-yellow-600 hover:bg-yellow-700 focus:ring-yellow-500', 'info' => 'bg-blue-600 hover:bg-blue-700 focus:ring-blue-500', ]; @endphp
{{ $message }}