Skip to content

Instantly share code, notes, and snippets.

@asikur
Last active February 11, 2018 15:10
Show Gist options
  • Save asikur/69c279451f66e3d578133e3648a997aa to your computer and use it in GitHub Desktop.
Save asikur/69c279451f66e3d578133e3648a997aa to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Middleware;
use Closure;
class JsonMiddleware
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$request->headers->set('Accept', 'application/json');
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment