底辺SE奮闘記

年収300万SEブログ

2022-04-01から1ヶ月間の記事一覧

【Stripe・Laravel Cashier】newSubscription時に You cannot set the quantity for metered plans. で困った

現象 表題の通り。Stripeのテスト中に、 You cannot set the quantity for metered plans. というよくわからないエラーが出る。 解法 バージョンによっておそらく解法が異なる。両方試すと良い。 解法1 数量を0に指定する。 newSubscription("default", "pri…

【Stripe・Laravel Cashier】Attempt to read property "default_payment_method" on null で困った

現象 表題の通り。Stripeのテスト中に、 Attempt to read property "default_payment_method" on null というよくわからないエラーが出る。 解法 下記を確認 Billableモデル(\App\Models\Userなど)に対応するユーザがStripe上に存在しているか。 Billable…