Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

ncltours's avatar

Auto popup Modal when session expires in laravel without clicking in the web?

My session expires every 5 mins, How to show auto popup modal saying session expired and refresh page without clicking the page in laravel?

0 likes
2 replies
matt_panton's avatar

Could you just have a javascript timeout method that starts on pageload?

martinbean's avatar
if (sessionHasTimedOut === true) {
    $('#timeout-modal').modal('show');
}

@ncltours You’ll need to determine when a session’s timed out, though.

Please or to participate in this conversation.