components([ TextInput::make('pm_name') ->label('Method Name'), ]); } public static function table(Table $table): Table { return $table ->columns([ TextColumn::make('pm_name') ->label('Method Name') ->sortable(), ]) ->filters([ // ]) ->recordActions([ EditAction::make(), ]) ->toolbarActions([ BulkActionGroup::make([ DeleteBulkAction::make(), ]), ]); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => Pages\ListPaymentMethods::route('/'), 'create' => Pages\CreatePaymentMethods::route('/create'), 'edit' => Pages\EditPaymentMethods::route('/{record}/edit'), ]; } }