AuthUser
extends AuthUser
in package
Uses
PowerJoins
Table of Contents
- table = "auth_users"
- Table name, as constant, used to avoid table name duplication across the source code base.
- $casts : mixed
- $table : string
- Table name
- customer() : BelongsTo
- hasVerifiedEmail() : bool
- This function overrides the default email verification check so that it will run only if the functionalities has been enabled (the route exists)
- preventAccess() : $this
- restoreAccess() : $this
- newFactory() : AuthUserFactory
- Get the Factory Class
Constants
table
Table name, as constant, used to avoid table name duplication across the source code base.
public
mixed
table
= "auth_users"
Tags
Properties
$casts
protected
mixed
$casts
= ['locked' => 'boolean']
$table
Table name
protected
string
$table
= self::table
Methods
customer()
public
customer() : BelongsTo
Return values
BelongsTo —hasVerifiedEmail()
This function overrides the default email verification check so that it will run only if the functionalities has been enabled (the route exists)
public
hasVerifiedEmail() : bool
Return values
bool —preventAccess()
public
preventAccess() : $this
Return values
$this —restoreAccess()
public
restoreAccess() : $this
Return values
$this —newFactory()
Get the Factory Class
protected
static newFactory() : AuthUserFactory