クレジットカードクラスがあり、検証などで使用するためにさまざまな属性でsimple_form f.inputメソッドを使用したいのですが、model_nameについてエラーが発生します。これを行う簡単な方法はありますか?
= simple_form_for @credit_card, url: join_network_path do |f|
.payment-errors
= f.input :card_number
= f.input :cvc
= f.input :expiry_month
= f.input :expiry_year
= f.submit 'Join Network'