i'm tired for more than week i can't resolve this, i have the csrf which it's already attached to the axios header at bootstap.js, i get always this response from server when try to post simple post ( they are three pictures below explaining my situation ) thanks for the advance
Try this, it works for me so far but you'll be without CSRF, go to 'App\Http\Middleware\VerifyCsrfToken' then edit the protected variable to this
protected $except = [
"/*"
];
the '/*'
says to exclude CSRF from all routes, although this isn't ideal it should fix the problem, Maybe just exclude those specific routes that are throwing you the error?
e.g. "/specificRoute"