2

如何使用 LaravelCashier库创建客户和卡,以便稍后收费?不,我不是在寻找订阅。

4

1 回答 1

0

假设您正在运行 Laravel 5,以下将起作用。对于条带网关,有一个createStripeCustomer功能。您可以手动调用该函数来为新客户请求一个 stripe_token 并存储它。

//pass the user object to the gateway; it must implement BillableContract
$gateway = new \Laravel\Cashier\StripeGateway($user);

//manually create a new Customer instance with Stripe
$customer = $gateway->createStripeCustomer($request->get('stripe_token'));

//update the model's info
$gateway->updateLocalStripeData($customer);

然后,您可以将此客户令牌用于将来的订阅等。

于 2015-09-22T21:22:42.940 回答