zipzoft/laravel-http-logger

Laravel Http logger

1.0.4 2021-07-30 09:49 UTC

This package is auto-updated.

Last update: 2024-03-29 04:13:00 UTC


README

Installation

composer require zipzoft/laravel-http-logger

Config

php artisan vendor:publish --provider="Zipzoft\HttpLogger\HttpLoggerServiceProvider" --tag="config"

Configuration will be added to config/http-logger.php

Usage

Add the middleware as Global or single route

// in `app/Http/Kernel.php`
protected $middleware = [
    // ...
    \Zipzoft\HttpLogger\LogRequestMiddleware::class,
];