components([ Forms\Components\TextInput::make('judge_number') ->required() ->maxLength(255), ]); } public function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('judge_number'), ]) ->filters([ // ]) ->headerActions([ CreateAction::make(), ]) ->recordActions([ EditAction::make(), DeleteAction::make(), ]) ->toolbarActions([ BulkActionGroup::make([ DeleteBulkAction::make(), ]), ]); } }