Skip to content

Instantly share code, notes, and snippets.

@angelmendozacap
Created February 22, 2020 20:58
Pretty Print By Default in Laravel
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Http\JsonResponse;
class PrettyPrintMiddleware
{
private const QUERY_PARAMETER = 'pretty';
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$response = $next($request);
if ($response instanceof JsonResponse) {
if (!$request->query(self::QUERY_PARAMETER) || $request->query(self::QUERY_PARAMETER) == 'true') {
$response->setEncodingOptions(JSON_PRETTY_PRINT);
}
}
return $response;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment