*/ protected $fillable = []; protected $guarded = []; protected $appends = []; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = []; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ // 'password' => 'hashed', 'verify_time' => 'datetime', 'auth_time' => 'datetime' ]; } }