Skip to content

Commit

Permalink
fix: Feedback admin search (#3333)
Browse files Browse the repository at this point in the history
  • Loading branch information
atoff authored Nov 14, 2023
1 parent 40e3850 commit 9127a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Filament/Resources/FeedbackResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static function table(Table $table): Table
->columns([
Tables\Columns\TextColumn::make('id')
->sortable(),
Tables\Columns\TextColumn::make('account.name')->label('Subject')->searchable(),
Tables\Columns\TextColumn::make('account.name')->label('Subject')->searchable(['name_first', 'name_last']),
Tables\Columns\TextColumn::make('submitter.name')->label('Submitted By')->visible(self::canSeeSubmitter()),
Tables\Columns\TextColumn::make('created_at')
->dateTime('d/m/Y H:i')
Expand Down

0 comments on commit 9127a22

Please sign in to comment.