I am flashing a success message using session->flash() method in laravel. But when user clicks back button the message comes up again. How to fix this. My code for showing message is -
@if(Session::get('success') )
<script>
swal({
text: "",
button: localMsg.ok,
}).then((isConfirm) => {
});
</script>
@elseif(Session::get('error'))
<script>
swal({
text: "",
button: localMsg.ok,
}).then((isConfirm) => {
});
</script>
@endif
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire