Я пытаюсь интегрировать Stripe в мое приложение Laravel.Я пытаюсь использовать this (Pay with Card) Сервис Stripe.
Я использую приведенный ниже код после перенаправления с Stripe
try {
$charge = Charge::create([
'amount' => $price * 100,
'currency' => 'gbp',
'source' => $request->stripeToken,
'application_fee' => 123, // Here is the issue , if I remove this line it works fine.
], [
'stripe_account' => $stripe_id,
]);
} catch (Exception $e) {
return back()->withError('Something went wrong while processing your payment.');
}
У меня ошибка ниже
ОБНОВЛЕНИЕ
Теперь я использую код ниже.
try {
$charge = Charge::create([
'amount' => $price * 100,
'currency' => 'gbp',
'source' => $request->stripeToken,
"destination" => array(
"amount" => 877,
"account" => "ca_CxKfJvDzUYe3NUpOYZcRofjlZzE8OYCq",
),
], [
'stripe_account' => $stripe_id,
]);
} catch (Exception $e) {
return back()->withError('Something went wrong while processing your payment.');
}
Я получаю ниже ошибка