Skip to content

Instantly share code, notes, and snippets.

@wlkns
Created April 11, 2020 12:51
Show Gist options
  • Select an option

  • Save wlkns/f82078c76a4ae12ccbc46ad3fd72e072 to your computer and use it in GitHub Desktop.

Select an option

Save wlkns/f82078c76a4ae12ccbc46ad3fd72e072 to your computer and use it in GitHub Desktop.
Always Return Json
<?php
namespace App\Http\Middleware;
use Closure;
class AlwaysReturnJson
{
/**
* 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