Hello,
By default laravel enables "CSRF checking" on POST routes. If you are not passing a _token with your request then an exception is raised every time a request is made (and depending on your application this can trigger other methods, write log files, etc).
You can go to App/Http/Kernel.php and comment out the VerifyCsrfToken middleware.
Just an idea.
good luck
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.