Skip to content

Instantly share code, notes, and snippets.

@BrockReece
Created April 6, 2016 15:46
Show Gist options
  • Save BrockReece/c5d9c46ee0473649f1a3c18c27bf7bda to your computer and use it in GitHub Desktop.
Save BrockReece/c5d9c46ee0473649f1a3c18c27bf7bda to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Middleware;
use Closure;
class Cors
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
header('Access-Control-Allow-Origin: ' . config('app.client_url'));
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With');
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment