RetryCommand::askWithCompletion()

string askWithCompletion(string $question, array $choices, string $default = null) Prompt the user for input with auto completion. Parameters string $question array $choices string $default Return Value string

PasswordBroker::validator()

void validator(Closure $callback) Set a custom password validator. Parameters Closure $callback Return Value void

Notification::__callStatic()

static mixed __callStatic(string $method, array $args) Handle dynamic, static calls to the object. Parameters string $method array $args Return Value mixed Exceptions RuntimeException

Hashing

Illuminate\Hashing Classes BcryptHasher HashServiceProvider

JoinClause::when()

Builder when(bool $value, Closure $callback, Closure $default = null) Apply the callback's query changes if the given "value" is true. Parameters bool $value Closure $callback Closure $default Return Value Builder

SlackWebhookChannel

SlackWebhookChannel class SlackWebhookChannel (View source) Methods void __construct(Client $http) Create a new Slack channel instance. ResponseInterface send(mixed $notifiable, Notification $notification) Send the given notification.

HasOneOrMany::relatedUpdatedAt()

string relatedUpdatedAt() Get the name of the related model's "updated at" column. Return Value string

MorphOneOrMany::updateOrCreate()

Model updateOrCreate(array $attributes, array $values = array()) Create or update a related record matching the attributes, and fill it with values. Parameters array $attributes array $values Return Value Model

Model::newEloquentBuilder()

Builder|Model newEloquentBuilder(Builder $query) Create a new Eloquent query builder for the model. Parameters Builder $query Return Value Builder|Model

TokenRepositoryInterface

TokenRepositoryInterface interface TokenRepositoryInterface (View source) Methods string create(CanResetPassword $user) Create a new token. bool exists(CanResetPassword $user, string $token) Determine if a token record exists and is valid. void delete(string $token) Delete a token record. void deleteExpired() Delete expired tokens.