Pivot::__toString()

string __toString() Convert the model to its string representation. Return Value string

BelongsToMany::syncWithoutDetaching()

array syncWithoutDetaching(Collection|array $ids) Sync the intermediate tables with a list of IDs without detaching. Parameters Collection|array $ids Return Value array

MorphToMany::save()

Model save(Model $model, array $joining = array(), bool $touch = true) Save a new model and attach it to the parent model. Parameters Model $model array $joining bool $touch Return Value Model

BcryptHasher

BcryptHasher class BcryptHasher implements Hasher (View source) Methods string make(string $value, array $options = array()) Hash the given value. bool check(string $value, string $hashedValue, array $options = array()) Check the given plain value against a hash. bool needsRehash(string $hashedValue, array $options = array()) Check if the given hash has been hashed using the given options. $this setRounds(int $rounds) Set the default password work factor.

UserInterface

UserInterface interface UserInterface (View source) Methods mixed getAuthIdentifier() Get the unique identifier for the user. string getAuthPassword() Get the password for the user. string getRememberToken() Get the token value for the "remember me" session. void setRememberToken(string $value) Set the token value for the "remember me" session. string getRememberTokenName() Get the column name for the "remember me" token.

MorphToMany::getEager()

Collection getEager() Get the relationship for eager loading. Return Value Collection

Queue::pushRaw()

mixed pushRaw(string $payload, string $queue = null, array $options = array()) Push a raw payload onto the queue. Parameters string $payload string $queue array $options Return Value mixed

BelongsTo::getRelation()

string getRelation() Get the name of the relationship. Return Value string

Router::auth()

void auth() Register the typical authentication routes for an application. Return Value void

Router::dispatchToRoute()

mixed dispatchToRoute(Request $request) Dispatch the request to a route and return the response. Parameters Request $request Return Value mixed