mnarushevich / laravel-audit-logs
There is no license information available for the latest version (v0.0.5) of this package.
A Laravel package for audit logging
Package info
github.com/mnarushevich/laravel-audit-logs
pkg:composer/mnarushevich/laravel-audit-logs
v0.0.5
2026-05-11 08:34 UTC
Requires
- php: ^8.5
- illuminate/database: ^12.0 || ^13.0
- illuminate/support: ^12.0 || ^13.0
Requires (Dev)
- orchestra/testbench: ^9.0 || ^10.0 || ^11.0
- pestphp/pest: ^4.7
- pestphp/pest-plugin-laravel: ^4.1
- rector/rector: ^2.4
This package is auto-updated.
Last update: 2026-05-11 08:35:30 UTC
README
Requirements
- PHP ^8.2
- Laravel ^11.0 || ^12.0
How to use
- Install the package via composer:
composer require mnarushevich/laravel-audit-logs
- Publish migrations:
php artisan vendor:publish --provider="MNarushevich\AuditLogs\AuditLogsServiceProvider" --tag="migrations"
- Publish config (optional):
php artisan vendor:publish --provider="MNarushevich\AuditLogs\AuditLogsServiceProvider" --tag="config"
- Run migrations:
php artisan migrate
- In your model use
MNarushevich\AuditLogs\Traits\HasAuditLogstrait:
use MNarushevich\AuditLogs\Traits\HasAuditLogs;