Seeing youyour configuration, maybe you have the same problem that iI had, i didn't. I wasn't using Auth, but i'm using sessions and get nullgot null everytime, and i. I solved it by changing this:
header('Access-Control-Allow-Origin: *'); ... header('Access-Control-Allow-Credentials: true'); forto this:
header('Access-Control-Allow-Origin: http://localhost:9000'); ... header('Access-Control-Allow-Credentials: true'); And theThe reason that iI found is that when you use the credentials it needs to specify the Originorigin for security purposes, and aboutfor the ajaxAJAX request it needs to specify the with credentials too, too. I use angularAngular and iI did this with $httpProvider.defaults.withCredentials=true; and i, but I really don't know thisthe corresponding instruction for jqueryjQuery, but iI hope you foundcan find it. Check
Check the headers of the request and responses with your favourite debugger (Firebug for me) they. They should have a cookie attribute (it contains something with "laravel", "token", etc.) that the second time should be equal to the first response header. Regards.