class EmailToken extends AbstractModel

Properties

bool $timestamps <p>Indicates if the model should be timestamped. Turn off by default.</p> from AbstractModel
protected callable[] $afterSaveCallbacks <p>An array of callbacks to be run once after the model is saved.</p> from AbstractModel
protected callable[] $afterDeleteCallbacks <p>An array of callbacks to be run once after the model is deleted.</p> from AbstractModel
static $customRelations from AbstractModel
static $customCasts from AbstractModel
static $defaults from AbstractModel
int|null $id from AbstractModel
protected array $dates <p>The attributes that should be mutated to dates.</p>
bool $incrementing <p>Use a custom primary key for this model.</p>
protected $primaryKey <p>{@inheritdoc}</p>
string $token
int $user_id
Carbon $created_at
string $email

Methods

static 
boot()

<p>{@inheritdoc}</p>

__construct(array $attributes = [])

<p>{@inheritdoc}</p>

getCasts()

<p>{@inheritdoc}</p>

mixed
getAttribute(string $key)

<p>Get an attribute from the model. If nothing is found, attempt to load a custom relation method with this key.</p>

mixed
getCustomRelation(string $name)

<p>Get a custom relation object.</p>

void
afterSave(callable $callback)

<p>Register a callback to be run once after the model is saved.</p>

void
afterDelete(callable $callback)

<p>Register a callback to be run once after the model is deleted.</p>

callable[]
releaseAfterSaveCallbacks()

No description

callable[]
releaseAfterDeleteCallbacks()

No description

__call($method, $arguments)

<p>{@inheritdoc}</p>

static EmailToken
generate(string $email, int $userId)

<p>Generate an email token for the specified user.</p>

BelongsTo
user()

<p>Define the relationship with the owner of this email token.</p>

scopeValidOrFail(Builder $query, string $id)

<p>Find the token with the given ID, and assert that it has not expired.</p>

Details

static boot()

<p>{@inheritdoc}</p>

__construct(array $attributes = [])

<p>{@inheritdoc}</p>

Parameters

array $attributes

getCasts()

<p>{@inheritdoc}</p>

mixed getAttribute(string $key)

<p>Get an attribute from the model. If nothing is found, attempt to load a custom relation method with this key.</p>

Parameters

string $key

Return Value

mixed

protected mixed getCustomRelation(string $name)

<p>Get a custom relation object.</p>

Parameters

string $name

Return Value

mixed

void afterSave(callable $callback)

<p>Register a callback to be run once after the model is saved.</p>

Parameters

callable $callback

Return Value

void

void afterDelete(callable $callback)

<p>Register a callback to be run once after the model is deleted.</p>

Parameters

callable $callback

Return Value

void

callable[] releaseAfterSaveCallbacks()

Return Value

callable[]

callable[] releaseAfterDeleteCallbacks()

Return Value

callable[]

__call($method, $arguments)

<p>{@inheritdoc}</p>

Parameters

$method
$arguments

static EmailToken generate(string $email, int $userId)

<p>Generate an email token for the specified user.</p>

Parameters

string $email
int $userId

Return Value

EmailToken

BelongsTo user()

<p>Define the relationship with the owner of this email token.</p>

Return Value

BelongsTo

EmailToken scopeValidOrFail(Builder $query, string $id)

<p>Find the token with the given ID, and assert that it has not expired.</p>

Parameters

Builder $query
string $id

Return Value

EmailToken

Exceptions

InvalidConfirmationTokenException