Güncelleme:
Bunu birde daha kolay ve kısa bir kullanım için header kısmında fonksiyon haline getirdim. Belki bir gün birilerine lazım olur 🙂
function initShowMessage(message, type) {
var toastClass = type === 'success' ? 'bg-emerald-500' : 'bg-red-500';
window.Swal.fire({ // window objesine atanmış Swal
position: 'top-end',
backdrop: false,
showConfirmButton: false,
customClass: toastClass,
title: message,
timer: 2500,
});
}
Yeni kullanım şeklim:
@if(Session::has('success'))
<script>
document.addEventListener('DOMContentLoaded', function () {
initShowMessage('{{ Session::get('success') }}', 'success');
});
</script>
@endif