This commit is contained in:
Bozhidar Slaveykov 2024-04-06 21:02:16 +03:00
parent 12894cf2f9
commit b289867a35
2 changed files with 4 additions and 3 deletions

View file

@ -106,8 +106,8 @@ class PhyreServerResource extends Resource
{
return [
'index' => Pages\ListPhyreServers::route('/'),
'create' => Pages\CreatePhyreServer::route('/create'),
'edit' => Pages\EditPhyreServer::route('/{record}/edit'),
// 'create' => Pages\CreatePhyreServer::route('/create'),
// 'edit' => Pages\EditPhyreServer::route('/{record}/edit'),
];
}
}

View file

@ -6,8 +6,9 @@ use App\Filament\Resources\PhyreServerResource;
use App\Models\PhyreServer;
use Filament\Actions;
use Filament\Resources\Pages\ListRecords;
use Filament\Resources\Pages\ManageRecords;
class ListPhyreServers extends ListRecords
class ListPhyreServers extends ManageRecords
{
protected static string $resource = PhyreServerResource::class;