void __construct(Builder $query) Create a new Eloquent query builder instance. Parameters Builder $query Return Value void
void __construct(Connection $connection) Create a new database Schema manager. Parameters Connection $connection Return Value void
mixed __call(string $method, array $parameters) Dynamically handle calls into the query instance. Parameters string $method array $parameters Return Value mixed
$this withoutGlobalScopes(array $scopes = null) Remove all or passed registered global scopes. Parameters array $scopes Return Value $this
mixed __call(string $method, array $parameters) Handle dynamic method calls into the method. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException
static mixed __callStatic(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException
$this withGlobalScope(string $identifier, Scope|Closure $scope) Register a new global scope. Parameters string $identifier Scope|Closure $scope Return Value $this
$this without(mixed $relations) Prevent the specified relations from being eager loaded. Parameters mixed $relations Return Value $this
$this withCount(mixed $relations) Add subselect queries to count the relations. Parameters mixed $relations Return Value $this
$this withoutGlobalScope(Scope|string $scope) Remove a registered global scope. Parameters Scope|string $scope Return Value $this
Page 889 of 996