0
我在我的laravel應用程序中使用cartalyst strip API創建了strip的付款計劃,它工作正常,但當strip顯示任何錯誤時,它直接顯示在DOM中。我想將它存儲在一個變量中,然後重定向到上一頁。我已經使用try...catch
方法,但它不適用於創建計劃。Hadle cartledst strip plan error
下面是我的代碼
$stripe = Stripe::make(STRIPE_KEY);
try {
$plan = $stripe->plans()->create([
'id' => 'monthly',
'name' => 'palan name'
'amount' => '22',
'currency' => 'USD',
'interval' => 'month',
'interval_count' => '6',
'statement_descriptor' => 'test description'
]);
}
catch (Stripe\Error\Base $e) {
echo($e->getMessage());
}
我會實施它,並讓你知道。謝謝 – HKumar