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.
2 parents 84d3b25 + 1949581 commit 6097b11Copy full SHA for 6097b11
1 file changed
src/Resources/MailResource.php
@@ -390,10 +390,16 @@ public static function table(Table $table): Table
390
->searchable(),
391
TextColumn::make('opens')
392
->label(__('Opens'))
393
+ ->badge()
394
+ ->color('info')
395
+ ->alignCenter()
396
->tooltip(fn (Mail $record) => __('Last opened at :date', ['date' => $record->last_opened_at?->format('d-m-Y H:i')]))
397
->sortable(),
398
TextColumn::make('clicks')
399
->label(__('Clicks'))
400
401
+ ->color('clicked')
402
403
->tooltip(fn (Mail $record) => __('Last clicked at :date', ['date' => $record->last_clicked_at?->format('d-m-Y H:i')]))
404
405
TextColumn::make('sent_at')
0 commit comments