Download the PHP package lupka/laravel-api-logger without Composer
On this page you can find all versions of the php package lupka/laravel-api-logger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download lupka/laravel-api-logger
More information about lupka/laravel-api-logger
Files in lupka/laravel-api-logger
Package laravel-api-logger
Short Description Logs requests/responses inside your app via middleware.
License MIT
Informations about the package laravel-api-logger
Log API requests/responses inside your Laravel app
By default, this package logs the following data:
- Method (
GET
,POST
, etc) - URL
- Client IP Address
- Client User Agent
- Request Body
- Request Query Parameters
- User ID (for authenticated requests)
- HTTP Status Code (
200
,404
, etc) - Response Body (if JSON)
- Exception Type/Message if an error occurs
for each route where the middleware is installed.
Installation
You can install the package via Composer:
The package will automatically register its service provider.
Then run the migration to add the api_logs
table to your database:
Publish the config file (api_logger.php
):
php artisan vendor:publish --provider="Lupka\ApiLogger\ApiLoggerServiceProvider" --tag="config"
Now you can install the api-logger
middleware as needed. For example, in app/Http/Kernel.php
(to log every API request):
Or, you can add the alias to a specific route or group:
Viewing Logs
Logs are stored in the api_logs
table. There's an Eloquent model included in the package (Lupka\ApiLogger\Models\ApiLog
) for querying records, etc. For example, to get all logs:
Clearing Logs
Logs can be cleared by scheduling the api-logger:clear
job in your app/Console/Kernel.php
file:
Any logs older than 30 days will be cleared by default. This can be changed by modifying the log_expiry
config value.
Log -> User Relationship
The ApiLog
Eloquent model contains a relationship ($log->user()
) with the default App\User
model. If your user model has a different class name, you can change that relationship using the user_class
config value.
License
Licensed under the MIT license. See License File for more information.