BuildsQueries
trait BuildsQueries mixin Builder (View source)
Traits
Methods
Apply the callback if the given "value" is (or resolves to) truthy.
Apply the callback if the given "value" is (or resolves to) falsy.
Chunk the results of the query.
Run a map over each item while chunking.
Execute a callback over each item while chunking.
Chunk the results of a query by comparing IDs.
Chunk the results of a query by comparing IDs in descending order.
Chunk the results of a query by comparing IDs in a given order.
Execute a callback over each item while chunking by ID.
Query lazily, by chunks of the given size.
Query lazily, by chunking the results of a query by comparing IDs.
Query lazily, by chunking the results of a query by comparing IDs in descending order.
Query lazily, by chunking the results of a query by comparing IDs in a given order.
Execute the query and get the first result.
Execute the query and get the first result or throw an exception.
Execute the query and get the first result if it's the sole matching record.
Paginate the given query using a cursor paginator.
Get the original column name of the given column, without any aliasing.
Create a new length-aware paginator instance.
Create a new simple paginator instance.
Create a new cursor paginator instance.
Pass the query to a given callback and then return it.
Pass the query to a given callback and return the result.
Details
        
                            $this|TWhenReturnType
    when($value = null, callable|null $callback = null, callable|null $default = null)
        
    
    Apply the callback if the given "value" is (or resolves to) truthy.
        
                            $this|TUnlessReturnType
    unless($value = null, callable|null $callback = null, callable|null $default = null)
        
    
    Apply the callback if the given "value" is (or resolves to) falsy.
        
                            bool
    chunk(int $count, callable $callback)
        
    
    Chunk the results of the query.
        
                            TReturn>
    chunkMap(callable $callback, int $count = 1000)
        
    
    Run a map over each item while chunking.
        
                            bool
    each(callable $callback, int $count = 1000)
        
    
    Execute a callback over each item while chunking.
        
                            bool
    chunkById(int $count, callable $callback, string|null $column = null, string|null $alias = null)
        
    
    Chunk the results of a query by comparing IDs.
        
                            bool
    chunkByIdDesc(int $count, callable $callback, string|null $column = null, string|null $alias = null)
        
    
    Chunk the results of a query by comparing IDs in descending order.
        
                            bool
    orderedChunkById(int $count, callable $callback, string|null $column = null, string|null $alias = null, bool $descending = false)
        
    
    Chunk the results of a query by comparing IDs in a given order.
        
                            bool
    eachById(callable $callback, int $count = 1000, string|null $column = null, string|null $alias = null)
        
    
    Execute a callback over each item while chunking by ID.
        
                            TValue>
    lazy(int $chunkSize = 1000)
        
    
    Query lazily, by chunks of the given size.
        
                            TValue>
    lazyById(int $chunkSize = 1000, string|null $column = null, string|null $alias = null)
        
    
    Query lazily, by chunking the results of a query by comparing IDs.
        
                            TValue>
    lazyByIdDesc(int $chunkSize = 1000, string|null $column = null, string|null $alias = null)
        
    
    Query lazily, by chunking the results of a query by comparing IDs in descending order.
        
                    protected        LazyCollection
    orderedLazyById(int $chunkSize = 1000, string|null $column = null, string|null $alias = null, bool $descending = false)
        
    
    Query lazily, by chunking the results of a query by comparing IDs in a given order.
        
                            TValue|null
    first(array|string $columns = ['*'])
        
    
    Execute the query and get the first result.
        
                            TValue
    firstOrFail(array|string $columns = ['*'], string|null $message = null)
        
    
    Execute the query and get the first result or throw an exception.
        
                            TValue
    sole(array|string $columns = ['*'])
        
    
    Execute the query and get the first result if it's the sole matching record.
        
                    protected        CursorPaginator
    paginateUsingCursor(int $perPage, array|string $columns = ['*'], string $cursorName = 'cursor', Cursor|string|null $cursor = null)
        
    
    Paginate the given query using a cursor paginator.
        
                    protected        string
    getOriginalColumnNameForCursorPagination($builder, string $parameter)
        
    
    Get the original column name of the given column, without any aliasing.
        
                    protected        LengthAwarePaginator
    paginator(Collection $items, int $total, int $perPage, int $currentPage, array $options)
        
    
    Create a new length-aware paginator instance.
        
                    protected        Paginator
    simplePaginator(Collection $items, int $perPage, int $currentPage, array $options)
        
    
    Create a new simple paginator instance.
        
                    protected        CursorPaginator
    cursorPaginator(Collection $items, int $perPage, Cursor $cursor, array $options)
        
    
    Create a new cursor paginator instance.
        
                            $this
    tap($callback)
        
    
    Pass the query to a given callback and then return it.
        
                            
    pipe($callback)
        
    
    Pass the query to a given callback and return the result.