| Conditions | 3 |
| Paths | 4 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | protected function baseQuery(GridViewRequest $request) |
||
| 26 | { |
||
| 27 | $query = clone $this->query; |
||
| 28 | |||
| 29 | foreach ($request->filters as $field => $value) { |
||
| 30 | $query->where($field, 'LIKE', '%' . $value . '%'); |
||
| 31 | } |
||
| 32 | |||
| 33 | if ($request->sortColumn) { |
||
| 34 | $query->orderBy($request->sortColumn, $request->sortOrder); |
||
| 35 | } |
||
| 36 | |||
| 37 | return $query; |
||
| 38 | } |
||
| 39 | |||
| 63 | } |