samfelgar/log-requests

4,888
Install
composer require samfelgar/log-requests
Latest Version:3.0.0
PHP:^7.4 || ^8.0
License:MIT
Last Updated:Sep 16, 2026
Links: GitHub  ·  Packagist
Maintainer: samfelgar

Log requests

This package provides a simple request logger to be used with Laravel applications.

Installation

You can install this package via composer:

composer require samfelgar/log-requests

By default, the logging channel used is the stack, but you can change this by publishing the config file:

php artisan vendor:publish --provider=Samfelgar\\LogRequests\\Providers\\LogRequestServiceProvider

After running the command above, the file log-requests.php will be created in the config path.

Usage

This package registers a middleware alias that can be used in your routes files:

use Illuminate\Support\Facades\Route;

Route::middleware(['log-requests'])->group(function () {
    // Your logged routes goes here.
});

You may also register the middleware within a group or globally by editing the \App\Http\Kernel class:

  • In groups
protected $middlewareGroups = [
    'web' => [
        // Other middleware
        \Samfelgar\LogRequests\Http\Middleware\LogRequest::class,
    ],

    'api' => [
        'throttle:api',
        'bindings',
        \Samfelgar\LogRequests\Http\Middleware\LogRequest::class,
    ],
];
  • Globally
protected $middleware = [
    // Other middleware
    \Samfelgar\LogRequests\Http\Middleware\LogRequest::class,
];

For more information about middlewares in Laravel, check the documentation.

Contributing

Found an error? Open an issue!

Any contribution is appreciated, just submit a pull request.

Related Packages

gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

580,311,802 34,925
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444