bool once(array $credentials = array()) Log a user into the application without sessions or cookies. Parameters array $credentials Return Value bool
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
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
Model|null fresh(array $with = array()) Reload a fresh model instance from the database. Parameters array $with Return Value Model|null
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
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
array resolveMethodDependencies(array $parameters, ReflectionFunctionAbstract $reflector) Resolve the given method's type-hinted dependencies. Parameters array $parameters ReflectionFunctionAbstract $reflector Return Value array
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
int run(InputInterface $input, OutputInterface $output) Run the console command. Parameters InputInterface $input OutputInterface $output Return Value int
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
Page 36 of 996