Skip to content

Commit

Permalink
feat: Updated app/Filament/Resources/PersonResourc
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Mar 10, 2024
1 parent 4fcbf7d commit 5dbf68e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions app/Filament/Resources/PersonResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,13 @@ public static function table(Table $table): Table
TextColumn::make('notes')->label('Notes'),
])
->filters([
//
Tables\Filters\Filter::make('name')->query(fn ($query, $data) => $query->where('name', 'like', "%{$data}%")),
])
->actions([
Tables\Actions\EditAction::make(),
])
->bulkActions([
Tables\Actions\BulkActionGroup::make([
Tables\Actions\DeleteBulkAction::make(),
]),
Tables\Actions\DeleteBulkAction::make(),
]);
}

Expand Down

0 comments on commit 5dbf68e

Please sign in to comment.