codetech / laravel-api-logs
A lightweight Laravel package for logging requests made to your API.
Requires
- php: ^8.2
- illuminate/database: ^11.0|^12.0|^13.0
- illuminate/support: ^11.0|^12.0|^13.0
Requires (Dev)
- larastan/larastan: ^3.10
- laravel/pint: ^1.29
- orchestra/testbench: ^9.0|^10.0|^11.0
- phpunit/phpunit: ^10.5|^11.0|^12.0
README
Laravel API Requests Logger
A lightweight Laravel package for logging the requests made to your API. Each authenticated request is stored with its URL, method, IP, payload, headers, response, and duration — linked to the user that made it, with sensitive values redacted before anything hits the database.
Quick start
composer require codetech/laravel-api-logs
Publish the migrations:
php artisan vendor:publish --provider="CodeTech\ApiLogs\Providers\ApiLogServiceProvider" --tag=migrations
Run the migrations:
php artisan migrate
Append the middleware to the api middleware group in your bootstrap/app.php:
use CodeTech\ApiLogs\Http\Middleware\LogApiRequest; use Illuminate\Foundation\Application; use Illuminate\Foundation\Configuration\Middleware; return Application::configure(basePath: dirname(__DIR__)) // ... ->withMiddleware(function (Middleware $middleware) { $middleware->appendToGroup('api', LogApiRequest::class); }) // ... ->create();
Add the HasApiLogs trait to the model that makes the requests to browse its history:
use CodeTech\ApiLogs\Traits\HasApiLogs; class User extends Authenticatable { use HasApiLogs; } $user->apiLogs; // all ApiLog entries for the user
Documentation
To learn all about the package — configuration, guards, redaction — head over to the extensive documentation.
Upgrading from an older version? See the upgrade guide.
Changelog
Every release is documented on the GitHub releases page.
Contributing
Contributions are welcome! Please read the contributing guidelines before opening an issue or pull request.
Security
If you discover a security vulnerability, please follow the security policy — do not report it publicly.
Support
If this package helps you, consider starring the repository — it helps other developers discover it.
License
codetech/laravel-api-logs is open-sourced software licensed under the MIT license.
About CodeTech
CodeTech is a web development agency based in Matosinhos, Portugal. Oh, and we LOVE Laravel!
