Laravel 5.2 CORS, GET not working with preflight OPTIONS
Clearly not the ideal solution but it WORKS. I’ve added this to the top of my routes.php file: header(‘Access-Control-Allow-Origin: *’); header( ‘Access-Control-Allow-Headers: Authorization, Content-Type’ ); It would be nice to get this working without a hack… alas. UPDATE: It turned out to be IIS related. I ended up setting the headers in the web.config file … Read more