Communication logger for Laravel PHP applications.
rawphp/laravel-communication-logger is a Laravel package for communication logger for laravel php applications..
It currently has 0 GitHub stars and 37 downloads on Packagist.
Install it with composer require rawphp/laravel-communication-logger.
Discover more Laravel packages by rawphp
or browse all Laravel packages to compare alternatives.
Last updated
As always, we need to pull in some dependencies through Composer.
composer require rawphp/laravel-communication-logger
RawPHP\LaravelCommunicationLogger\CommunicationLoggerProvider::class,
Add the CommunicationLog middleware to the Kernel middleware array. This allows all requests and responses to be logged.
/**
* The application's route middleware groups.
*
* @var array
*/
protected $middlewareGroups = [
CommunicationsLog::class,
],
];
php artisan vendor:publish --provider="RawPHP\LaravelCommunicationLogger\CommunicationLoggerProvider"