mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 12:24:11 +00:00
12 lines
257 B
PHP
Executable File
12 lines
257 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Spatie\Activitylog\Traits\LogsActivity;
|
|
|
|
abstract class AbstractUserModel extends Authenticatable {
|
|
use LogsActivity;
|
|
protected static $logFillable = true;
|
|
}
|