feat: access and game server request

This commit is contained in:
2026-07-09 14:32:44 +02:00
parent dc00141d25
commit d2c7fecd55
17 changed files with 456 additions and 2 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Filament\Resources\GameServers\Schemas;
use Filament\Forms\Components\TextInput;
use Filament\Schemas\Schema;
class GameServersForm
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
TextInput::make('name')
->required(),
TextInput::make('slug')
->required(),
]);
}
}
@@ -0,0 +1,26 @@
<?php
namespace App\Filament\Resources\GameServers\Schemas;
use Filament\Infolists\Components\TextEntry;
use Filament\Schemas\Schema;
class GameServersInfolist
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
TextEntry::make('id')
->label('ID'),
TextEntry::make('name'),
TextEntry::make('slug'),
TextEntry::make('created_at')
->dateTime()
->placeholder('-'),
TextEntry::make('updated_at')
->dateTime()
->placeholder('-'),
]);
}
}