Model::addHidden()

void addHidden(array|string|null $attributes = null) Add hidden attributes for the model. Parameters array|string|null $attributes Return Value void

DatabaseUserProvider::retrieveByToken()

Authenticatable|null retrieveByToken(mixed $identifier, string $token) Retrieve a user by their unique identifier and "remember me" token. Parameters mixed $identifier string $token Return Value Authenticatable|null

Model::setTable()

$this setTable(string $table) Set the table associated with the model. Parameters string $table Return Value $this

FormRequest::hasFile()

bool hasFile(string $key) Determine if the uploaded data contains a file. Parameters string $key Return Value bool

MorphPivot::addHidden()

void addHidden(array|string|null $attributes = null) Add hidden attributes for the model. Parameters array|string|null $attributes Return Value void

MorphPivot::setEventDispatcher()

static void setEventDispatcher(Dispatcher $dispatcher) Set the event dispatcher instance. Parameters Dispatcher $dispatcher Return Value void

SupportsBasicAuth

SupportsBasicAuth interface SupportsBasicAuth (View source) Methods Response|null basic(string $field = 'email', array $extraConditions = array()) Attempt to authenticate using HTTP Basic Auth. Response|null onceBasic(string $field = 'email', array $extraConditions = array()) Perform a stateless HTTP Basic login attempt.

Authenticatable::getAuthPassword()

string getAuthPassword() Get the password for the user. Return Value string

Model::setIncrementing()

$this setIncrementing(bool $value) Set whether IDs are incrementing. Parameters bool $value Return Value $this

DatabaseStore::get()

mixed get(string|array $key) Retrieve an item from the cache by key. Parameters string|array $key Return Value mixed