A Laravel package to log all http requests, queries, and views in the terminal.
cavin-kim/laravel-terminal-logger is a Laravel package for a laravel package to log all http requests, queries, and views in the terminal..
It currently has 1 GitHub stars and 15 downloads on Packagist (latest version v1.1.7).
Install it with composer require cavin-kim/laravel-terminal-logger.
Discover more Laravel packages by cavin-kim
or browse all Laravel packages to compare alternatives.
Last updated
laravel-terminal-logger:
A lightweight Laravel package to log HTTP requests, responses, database queries, and rendered views directly to the terminal or log files.
Install the package via Composer:
composer require cavin-kim/laravel-terminal-logger
Publish the configuration file:
php artisan vendor:publish --tag=config
Start your Laravel server:
php artisan serve
You can customize logging behavior by editing config/terminal-logger.php:
return [
'log_requests' => true,
'log_responses' => true,
'log_queries' => true,
'log_views' => true,
];
Once installed, the package will automatically log everything based on your configuration. No additional setup is required.
If you encounter any issues or have suggestions, feel free to open an issue on the GitHub repository.