Skip to content

Instantly share code, notes, and snippets.

View alikuro's full-sized avatar
🎯
Focusing

Muhamad Ali alikuro

🎯
Focusing
View GitHub Profile
@alikuro
alikuro / gist:432ef03b9fd572cacf1de58398d1981f
Created October 5, 2021 20:43 — forked from jrmadsen67/gist:bd0f9ad0ef1ed6bb594e
Laravel Quick Tip: Handling CsrfToken Expiration gracefully
Quick tip for handling CSRF Token Expiration - common issue is when you use csrf protection is that if
a form sits there for a while (like a login form, but any the same) the csrf token in the form will
expire & throw a strange error.
Handling it is simple, and is a good lesson for dealing with other types of errors in a custom manner.
In Middleware you will see a file VerifyCsrfToken.php and be tempted to handle things there. DON'T!
Instead, look at your app/Exceptions/Handler.php, at the render($request, Exception $e) function.
All of your exceptions go through here, unless you have excluded them in the $dontReport array at the