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

ClearCompiledCommand::warn()

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

Redirector::to()

RedirectResponse to(string $path, int $status = 302, array $headers = array(), bool $secure = null) Create a new redirect response to the given path. Parameters string $path int $status array $headers bool $secure Return Value RedirectResponse

Blueprint::longText()

Fluent longText(string $column) Create a new long text column on the table. Parameters string $column Return Value Fluent