Skip to content

Commit 7f5f00d

Browse files
bdelamatreactions-user
authored andcommitted
Fix styling
1 parent 81ec6c6 commit 7f5f00d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Traits/WithFilters.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,6 @@ public function applySearchFilter(Builder $query): Builder
256256
}
257257
}
258258
});
259-
260259
}
261260

262261
return $query;

tests/Http/Livewire/PetsTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function columns(): array
2525
Column::make('Name', 'name')
2626
->searchable(),
2727
Column::make('Age', 'age')
28-
->searchable(function(Builder $query, $search){
28+
->searchable(function (Builder $query, $search) {
2929
$query->orWhere('age', '=', $search);
3030
}),
3131
Column::make('Last Visit', 'last_visit')

0 commit comments

Comments
 (0)