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