improve torrent approval

This commit is contained in:
xiaomlove
2022-08-16 18:31:04 +08:00
parent bda12cce03
commit b398c8db3c
21 changed files with 418 additions and 75 deletions
@@ -0,0 +1,21 @@
<?php
namespace App\Filament\Resources\Torrent\TorrentDenyReasonResource\Pages;
use App\Filament\Resources\Torrent\TorrentDenyReasonResource;
use Filament\Pages\Actions;
use Filament\Resources\Pages\ManageRecords;
class ManageTorrentDenyReasons extends ManageRecords
{
protected ?string $maxContentWidth = 'full';
protected static string $resource = TorrentDenyReasonResource::class;
protected function getActions(): array
{
return [
Actions\CreateAction::make(),
];
}
}