[Vuejs]-Laravel api request from mobile app receives missing token error page (419)

-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)

Leave a comment