Skip to content

Instantly share code, notes, and snippets.

@nutch31
Created June 3, 2019 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nutch31/999df08ec5ad7e81aba12675885e2b41 to your computer and use it in GitHub Desktop.
Save nutch31/999df08ec5ad7e81aba12675885e2b41 to your computer and use it in GitHub Desktop.
$app->middleware([
App\Http\Middleware\CorsMiddleware::class
]);
<?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' => 'demo.heroleads.co.th',
'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;
}
}
// For Offline landing page
$router->group(['middleware' => ['checkToken', 'CorsMiddleware']], function() use ($router)
{
// move
$router->post('/LandingPageCallServiceOffline', 'Api\LandingPageCallServiceController@LandingPageCallService');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment