TestCase::assertViewHasAll()

$this assertViewHasAll(array $bindings) Assert that the view has a given list of bound data. Parameters array $bindings Return Value $this

Str::quickRandom()

static string quickRandom(int $length = 16) deprecated deprecated since version 5.3. Use the "random" method directly. Generate a "random" alpha-numeric string. Should not be considered sufficient for cryptography, etc. Parameters int $length Return Value string

Validator::getFacadeApplication()

static Application getFacadeApplication() Get the application instance behind the facade. Return Value Application

FormRequest::acceptsHtml()

bool acceptsHtml() Determines whether a request accepts HTML. Return Value bool

ViewClearCommand::choice()

string choice(string $question, array $choices, string $default = null, mixed $attempts = null, bool $multiple = null) Give the user a single choice from an array of answers. Parameters string $question array $choices string $default mixed $attempts bool $multiple Return Value string

Model::belongsTo()

BelongsTo belongsTo(string $related, string $foreignKey = null, string $otherKey = null, string $relation = null) Define an inverse one-to-one or many relationship. Parameters string $related string $foreignKey string $otherKey string $relation Return Value BelongsTo

ClearRemindersCommand::secret()

string secret(string $question, bool $fallback = true) Prompt the user for input but hide the answer from the console. Parameters string $question bool $fallback Return Value string

Pivot::newPivot()

Pivot newPivot(Model $parent, array $attributes, string $table, bool $exists) Create a new pivot model instance. Parameters Model $parent array $attributes string $table bool $exists Return Value Pivot

ConsoleSupportServiceProvider::register()

void register() Register the service provider. Return Value void

Event

Event class Event extends Facade (View source) Methods static void swap(mixed $instance) Hotswap the underlying instance behind the facade. from Facade static void spy() Convert the facade into a Mockery spy. from Facade static Expectation shouldReceive() Initiate a mock expectation on the facade. from Facade static mixed getFacadeRoot() Get the root object behind the facade. from Facade static void clearResolvedInstance(string $name) Clear a resolved facade instance. fro