feat: user account

This commit is contained in:
2025-02-10 10:15:45 +08:00
parent e7ec144539
commit c91b7c96d8

View File

@@ -23,9 +23,13 @@ class UserAccount extends Model
* The attributes that are mass assignable. * The attributes that are mass assignable.
*/ */
protected array $fillable = []; protected array $fillable = [];
protected array $guarded = [];
/** /**
* The attributes that should be cast to native types. * The attributes that should be cast to native types.
*/ */
protected array $casts = ['id' => 'integer', 'user_id' => 'integer']; protected array $casts = ['id' => 'integer', 'user_id' => 'integer'];
const CREATED_AT = null;
const UPDATED_AT = null;
} }