Builder::update()

int update(array $values) Update a record in the database. Parameters array $values Return Value int

Builder::where()

$this where(string|array|Closure $column, string $operator = null, mixed $value = null, string $boolean = 'and') Add a basic where clause to the query. Parameters string|array|Closure $column string $operator mixed $value string $boolean Return Value $this

Builder::whereDoesntHave()

Builder|Builder whereDoesntHave(string $relation, Closure $callback = null) Add a relationship count / exists condition to the query with where clauses. Parameters string $relation Closure $callback Return Value Builder|Builder

Model::addGlobalScope()

static mixed addGlobalScope(Scope|Closure|string $scope, Closure $implementation = null) Register a new global scope on the model. Parameters Scope|Closure|string $scope Closure $implementation Return Value mixed Exceptions InvalidArgumentException

SQLiteGrammar::compileCreate()

string compileCreate(Blueprint $blueprint, Fluent $command) Compile a create table command. Parameters Blueprint $blueprint Fluent $command Return Value string

Connection::useDefaultPostProcessor()

void useDefaultPostProcessor() Set the query post processor to the default implementation. Return Value void

FoundationServiceProvider::isDeferred()

bool isDeferred() Determine if the provider is deferred. Return Value bool

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

Repository

Repository class Repository implements ArrayAccess, Repository (View source) Methods void __construct(array $items = array()) Create a new configuration repository. bool has(string $key) Determine if the given configuration value exists. mixed get(string $key, mixed $default = null) Get the specified configuration value. void set(array|string $key, mixed $value = null) Set a given configuration value. void prepend(string $key, mixed $value) Prepend a value onto an arra

Repository::prepend()

void prepend(string $key, mixed $value) Prepend a value onto an array configuration value. Parameters string $key mixed $value Return Value void