move cleanup: seed bonus and seeding leeching time to job

This commit is contained in:
xiaomlove
2022-10-28 14:17:10 +08:00
parent 410aed39cf
commit a61d1b0900
19 changed files with 404 additions and 110 deletions
+9
View File
@@ -2,8 +2,10 @@
namespace App\Filament;
use Closure;
use Filament\Resources\Pages\ManageRecords;
use Filament\Tables\Filters\Layout;
use Illuminate\Database\Eloquent\Model;
class PageListSingle extends ManageRecords
{
@@ -13,4 +15,11 @@ class PageListSingle extends ManageRecords
{
return Layout::AboveContent;
}
protected function getTableRecordUrlUsing(): ?Closure
{
return function (Model $record): ?string {
return null;
};
}
}