Created
July 25, 2020 08:53
-
-
Save Sharifur/f5d33e0f0981b182ea5f6633b3702692 to your computer and use it in GitHub Desktop.
CORS middleware for laravel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
class CorsMiddleware | |
{ | |
/** | |
* Handle an incoming request. | |
* | |
* @param \Illuminate\Http\Request $request | |
* @param \Closure $next | |
* @return mixed | |
*/ | |
public function handle($request, Closure $next) | |
{ | |
$headers = [ | |
'Access-Control-Allow-Origin' => '*', | |
'Access-Control-Allow-Methods' => 'POST, GET, OPTIONS, PUT, DELETE', | |
'Access-Control-Allow-Credentials' => 'true', | |
'Access-Control-Max-Age' => '86400', | |
'Access-Control-Allow-Headers' => 'Content-Type, Authorization, X-Requested-With' | |
]; | |
if ($request->isMethod('OPTIONS')) | |
{ | |
return response()->json('{"method":"OPTIONS"}', 200, $headers); | |
} | |
$response = $next($request); | |
foreach($headers as $key => $value) | |
{ | |
$response->header($key, $value); | |
} | |
return $response; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment