composer require zipzoft/laravel-http-logger
php artisan vendor:publish --provider="Zipzoft\HttpLogger\HttpLoggerServiceProvider" --tag="config"
Configuration will be added to config/http-logger.php
Add the middleware as Global or single route
// in `app/Http/Kernel.php`
protected $middleware = [
// ...
\Zipzoft\HttpLogger\LogRequestMiddleware::class,
];