SessionGuard::once()

bool once(array $credentials = array()) Log a user into the application without sessions or cookies. Parameters array $credentials Return Value bool

MorphPivot::hydrate()

static Collection hydrate(array $items, string|null $connection = null) Create a collection of models from plain arrays. Parameters array $items string|null $connection Return Value Collection

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

MorphPivot::fresh()

Model|null fresh(array $with = array()) Reload a fresh model instance from the database. Parameters array $with Return Value Model|null

Builder::orWhereExists()

Builder|Builder orWhereExists(Closure $callback, bool $not = false) Add an or exists clause to the query. Parameters Closure $callback bool $not Return Value Builder|Builder

User::cant()

bool cant(string $ability, array|mixed $arguments = array()) Determine if the entity does not have a given ability. Parameters string $ability array|mixed $arguments Return Value bool

Route::resolveMethodDependencies()

array resolveMethodDependencies(array $parameters, ReflectionFunctionAbstract $reflector) Resolve the given method's type-hinted dependencies. Parameters array $parameters ReflectionFunctionAbstract $reflector Return Value array

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

ClearCompiledCommand::run()

int run(InputInterface $input, OutputInterface $output) Run the console command. Parameters InputInterface $input OutputInterface $output Return Value int

ClearCompiledCommand::error()

void error(string $string, null|int|string $verbosity = null) Write a string as error output. Parameters string $string null|int|string $verbosity Return Value void