Skip to content

Commit 0c21b70

Browse files
committed
Hotfix
Missing escape for namespace
1 parent 736f8ed commit 0c21b70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bllim/Datatables/Datatables.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public function remove_column()
158158
private function save_query($query)
159159
{
160160
$this->query = $query;
161-
$this->query_type = $query instanceof Illuminate\Database\Query\Builder ? 'fluent' : 'eloquent';
161+
$this->query_type = $query instanceof \Illuminate\Database\Query\Builder ? 'fluent' : 'eloquent';
162162
$this->columns = $this->query_type == 'eloquent' ? $this->query->getQuery()->columns : $this->query->columns;
163163
}
164164

0 commit comments

Comments
 (0)