query->toSql(); } public function select($statement) { return $this->query->select($statement); } public function orderBy(string $column, string $direction = 'asc') { return $this->query->orderBy($column, $direction); } public function get() { return $this->query->get(); } public function first() { return $this->query->first(); } }