Skip to content

Instantly share code, notes, and snippets.

@glebtv
Forked from Shelob9/LogAfterRequest.php
Created November 25, 2021 11:47
Show Gist options
  • Save glebtv/8f096002ca971cc0a30b22dd804976be to your computer and use it in GitHub Desktop.
Save glebtv/8f096002ca971cc0a30b22dd804976be to your computer and use it in GitHub Desktop.
Log all request to Laravel app. Based on http://blog.phakeapps.com/2015/06/23/log-every-request-and-response-in-laravel-5/ updated for Laravel 5.3
namespace App\Http\Middleware;
use Illuminate\Support\Facades\Log;
class LogAfterRequest {
public function handle($request, \Closure $next)
{
return $next($request);
}
public function terminate($request, $response)
{
Log::info('app.requests', ['request' => $request->all(), 'response' => $response]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment