tmdan / laravel-api-logger
Api Requests Logger for Laravel framework
Installs: 4 922
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: ^7.3|^8.0
- illuminate/support: ^v8.0.0
README
This is a small package that can helps in debugging api logs. It can log request method, url, request payload, which models are retrieved, controller and method.
Installation
- Install the package via composer
composer require tmdan/laravel-api-logger
Usage
- Publish the config file with:
php artisan vendor:publish --provider="Tmdan\ApiLogger\Providers\ApiLoggerServiceProvider"
- Run commands:
php artisan migrate
- Add to your .env file:
API_LOGGER_ENABLED=true
- Done!