RestartCommand::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

SqlServerGrammar::compileDisableForeignKeyConstraints()

string compileDisableForeignKeyConstraints() Compile the command to disable foreign key constraints. Return Value string

AbstractPaginator::resolveCurrentPage()

static int resolveCurrentPage(string $pageName = 'page', int $default = 1) Resolve the current page or return the default value. Parameters string $pageName int $default Return Value int

Pivot::getEventDispatcher()

static Dispatcher getEventDispatcher() Get the event dispatcher instance. Return Value Dispatcher

Connection::getSchemaBuilder()

Builder getSchemaBuilder() Get a schema builder instance for the connection. Return Value Builder

Collection::search()

mixed search(mixed $value, bool $strict = false) Search the collection for a given value and return the corresponding key if successful. Parameters mixed $value bool $strict Return Value mixed

SessionGuard::getUser()

Authenticatable|null getUser() Return the currently cached user. Return Value Authenticatable|null

DatabaseNotification::syncOriginal()

$this syncOriginal() Sync the original attributes with the current. Return Value $this

ShouldQueue

ShouldQueue interface ShouldQueue (View source)

SortedMiddleware::zip()

Collection zip(mixed $items) Zip the collection together with one or more arrays. e.g. new Collection([1, 2, 3])->zip([4, 5, 6]); => [[1, 4], [2, 5], [3, 6]] Parameters mixed $items Return Value Collection