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 42a091b commit 0b686e7Copy full SHA for 0b686e7
packages/expiry/src/Resources/ExpiryResource.php
@@ -43,6 +43,11 @@ public static function table(Table $table): Table
43
}
44
45
return $table
46
+ ->query(
47
+ Expiry::query()
48
+ ->orderBy('escalated_at', 'desc')
49
+ ->orderBy('expired_at', 'asc')
50
+ )
51
->columns([
52
Tables\Columns\TextColumn::make('title')
53
->label(__('core::core.title'))
@@ -114,7 +119,6 @@ public static function table(Table $table): Table
114
119
->searchable()
115
120
->limit(50),
116
121
])
117
- ->defaultSort('escalated_at', 'desc')
118
122
->filters([
123
SelectFilter::make('expiry_job')
124
->label(__('core::expiry.expiry_job'))
0 commit comments