[WORKING 100%] PHP CORS error 'Access-Control-Allow-Origin' missing - Enable CORS Laravel, CPanel
You can fix CORS issue easily by following below three steps.
Step 1:
install CORS middleware
As mentioned here ,
The laravel-cors
package allows you to send Cross-Origin Resource Sharing headers with Laravel middleware configuration. If you want to have a global overview of CORS workflow.
Step 2:
Cors class must be created under app\Http\Middleware directory upon completing Step 1. And replace entire class with following code.
Step 3:
Finally, Just add the following in .htaccess file (yourapplicationhosting/public under public directory).
Keep in Mind:
Remove Access-Control-Allow-Origin code from other .htaccess file which is located in your hosting / root directory. Otherwise you will get "Multiple CORS header 'Access-Control-Allow-Origin' not allowed" error
That's it and good to go.
This is how we can fix the the Cors Issue