schema([ Forms\Components\TextInput::make('name') ->required() ->maxLength(255), ]); } public function table(Table $table): Table { return $table ->recordTitleAttribute('name') ->columns([ Tables\Columns\TextColumn::make('name'), ]) ->filters([ // ]) ->headerActions([ ]) ->actions([ Tables\Actions\EditAction::make(), ]) ->bulkActions([ ]); } }