We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81ec6c6 commit 7f5f00dCopy full SHA for 7f5f00d
src/Traits/WithFilters.php
@@ -256,7 +256,6 @@ public function applySearchFilter(Builder $query): Builder
256
}
257
258
});
259
-
260
261
262
return $query;
tests/Http/Livewire/PetsTable.php
@@ -25,7 +25,7 @@ public function columns(): array
25
Column::make('Name', 'name')
26
->searchable(),
27
Column::make('Age', 'age')
28
- ->searchable(function(Builder $query, $search){
+ ->searchable(function (Builder $query, $search) {
29
$query->orWhere('age', '=', $search);
30
}),
31
Column::make('Last Visit', 'last_visit')
0 commit comments