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 83d6f8f commit ae4f72dCopy full SHA for ae4f72d
1 file changed
src/Resources/MailResource.php
@@ -320,6 +320,7 @@ public static function table(Table $table): Table
320
Tables\Columns\TextColumn::make('status')
321
->label(__('Status'))
322
->sortable()
323
+ ->searchable(false)
324
->badge()
325
->color(fn (string $state): string => match ($state) {
326
__('Soft Bounced') => 'warning',
@@ -341,6 +342,7 @@ public static function table(Table $table): Table
341
342
Tables\Columns\IconColumn::make('attachments')
343
->label('')
344
->alignLeft()
345
346
->getStateUsing(fn (Mail $record) => $record->attachments->count() > 0)
347
->icon(fn (string $state): string => $state ? 'heroicon-o-paper-clip' : ''),
348
Tables\Columns\TextColumn::make('to')
0 commit comments