如何将 laravel 收银员中的姓名和地址传递给条纹?
how to pass name and address in laravel cashier to stripe?
我正在通过 laravel 使用条带 cashier.when 使用充电方法
$stripeCharge = $user->charge(100, $paymentMethod,[
'customer' => 'test',
'description' => 'test description',
'amount' => 2000,
"name"=>"kjdkjdksdsd"
]);
我遇到了这个错误 'Received unknown parameter: name'。
尝试在没有名称的情况下进行交易时出现错误 'Export transactions require a customer name and address'。
我也试过送货地址。
"shipping"=> [
'address'=>[
"line1"=> "hjkjhjhhjj",
"line2"=> null,
"postal_code"=>"44424",
"state"=> null
],
"name"=> "erferwer"
],
但还是出现同样的错误。
任何人都可以帮助我在 laravel 收银员
中传递姓名和地址的正确格式
您似乎在尝试从印度创建出口费用。为此,有一些 requirements you must meet. Note that one of the requirements is a Customer billing address, so you will need to create a customer。送货地址也可以去那里,或者直接上charge
.
我正在通过 laravel 使用条带 cashier.when 使用充电方法
$stripeCharge = $user->charge(100, $paymentMethod,[
'customer' => 'test',
'description' => 'test description',
'amount' => 2000,
"name"=>"kjdkjdksdsd"
]);
我遇到了这个错误 'Received unknown parameter: name'。 尝试在没有名称的情况下进行交易时出现错误 'Export transactions require a customer name and address'。 我也试过送货地址。
"shipping"=> [
'address'=>[
"line1"=> "hjkjhjhhjj",
"line2"=> null,
"postal_code"=>"44424",
"state"=> null
],
"name"=> "erferwer"
],
但还是出现同样的错误。 任何人都可以帮助我在 laravel 收银员
中传递姓名和地址的正确格式您似乎在尝试从印度创建出口费用。为此,有一些 requirements you must meet. Note that one of the requirements is a Customer billing address, so you will need to create a customer。送货地址也可以去那里,或者直接上charge
.