{{-- resources/views/components/admin/confirm-modal.blade.php --}} @props([ 'modalId' => 'confirmModal', 'title' => null, 'message' => null, 'confirmText' => null, 'cancelText' => null, 'type' => 'warning' ]) @php $typeConfig = [ 'confirm' => [ 'icon' => 'https://cdn.lordicon.com/lupuorrc.json', 'colors' => 'primary:#405189,secondary:#0ab39c', 'btnClass' => 'btn-primary' ], 'warning' => [ 'icon' => 'https://cdn.lordicon.com/tdrtiskw.json', 'colors' => 'primary:#405189,secondary:#f7b84b', 'btnClass' => 'btn-warning' ], 'danger' => [ 'icon' => 'https://cdn.lordicon.com/gsqxdxog.json', 'colors' => 'primary:#405189,secondary:#f06548', 'btnClass' => 'btn-danger' ], 'info' => [ 'icon' => 'https://cdn.lordicon.com/gvtjlyjf.json', 'colors' => 'primary:#405189,secondary:#299cdb', 'btnClass' => 'btn-info' ] ]; $config = $typeConfig[$type] ?? $typeConfig['warning']; @endphp