Last active
July 11, 2022 09:19
-
-
Save meSingh/c90c5abc81a9cc0687a62a84eb2c696b to your computer and use it in GitHub Desktop.
If you are using laravel as api only, you might want to return JSON on every request, even on errors/exceptions. The easiest way to do so is using this middleware globally.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
use Illuminate\Http\Request; | |
class JsonMiddleware | |
{ | |
public function handle(Request $request, Closure $next) | |
{ | |
$request->headers->set('Accept', 'application/json'); | |
return $next($request); | |
} | |
} | |
Returns "text/html; charset=UTF-8"
Route::get('/foo', function () {
return 'hello world';
});
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you need 404 also in JSON, update the render function as follows. This solved for me in Laravel 6
app/Exceptions/Handler.php