-1👍
Laravel uses csrf tokens on its post requests. You can disable this on routes:
in file app/Http/Middleware/VerifyCsrfToken
protected $except = [
'webhook/*'
];
(change the route to the routes you want to exclude)
Source:stackexchange.com
-1👍
Laravel uses csrf tokens on its post requests. You can disable this on routes:
in file app/Http/Middleware/VerifyCsrfToken
protected $except = [
'webhook/*'
];
(change the route to the routes you want to exclude)