mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
12 lines
227 B
PHP
Executable File
12 lines
227 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Spatie\Activitylog\Traits\LogsActivity;
|
|
|
|
abstract class AbstractModel extends Model {
|
|
use LogsActivity;
|
|
protected static $logFillable = true;
|
|
}
|