*/ class Admins extends EloquentModel { /** * Table name * * @var string */ protected $table = 'tbladmins'; /** * Eloquent guarded parameters * @var array */ protected $guarded = ['id']; protected $primaryKey = 'id'; /** * Eloquent fillable parameters * @var array */ protected $fillable = ['uuid', 'roleid', 'username', 'password', 'passwordhash', 'authmodule', 'authdata', 'firstname', 'lastname', 'email', 'signature', 'notes', 'template', 'language', 'disabled', 'loginattempts', 'supportdepts', 'ticketnotifications', 'homewidgets', 'password_reset_key', 'password_reset_data', 'password_reset_expiry', 'created_at', 'updated_at']; /** * Indicates if the model should soft delete. * * @var bool */ protected $softDelete = false; /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; public function __construct(array $attributes = []) { parent::__construct($attributes); } }