OpenSkill\Datatable\Providers\QueryBuilderProvider::compileQuery PHP Метод

compileQuery() приватный Метод

Will compile the collection into the final collection where operations like search and order can be applied.
private compileQuery ( ) : Builder
Результат Illuminate\Database\Query\Builder
    private function compileQuery()
    {
        if ($this->queryConfiguration->isGlobalSearch()) {
            $this->compileGlobalQuery();
        } elseif ($this->queryConfiguration->isColumnSearch()) {
            $this->compileColumnQuery();
        }
    }