Description
Record the change log from models in Laravel
Once the package is installed, you can quickly and easily set up auditing for your Laravel application.
<?php namespace App; use Illuminate\Database\Eloquent\Model;use OwenIt\Auditing\Contracts\Auditable; class User extends Model implements Auditable{ use \OwenIt\Auditing\Auditable; // ...}
By default, the Database audit driver will be used. If needed, you can also implement your own Audit Driver.
Recent Courses on Laravel Daily
[NEW] Practical Laravel Security: Packages, Secrets, Supply-Chain Attacks
7 lessons
43 min read
Laravel 13 Eloquent: Expert Level
41 lessons
1 h 34 min
How to Build Laravel 13 API From Scratch
30 lessons
1 h 23 min