schema([ TextInput::make('judge_number'), ]); } public static function table(Table $table): Table { return $table ->columns([ TextColumn::make('judge_number')->sortable(), ]) ->filters([ // ]) ->actions([ Tables\Actions\EditAction::make(), ]) ->bulkActions([ Tables\Actions\DeleteBulkAction::make(), ]); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => Pages\ListJudges::route('/'), 'create' => Pages\CreateJudges::route('/create'), 'edit' => Pages\EditJudges::route('/{record}/edit'), ]; } }