我已经通过Laravel的Cashier软件包订阅了用户订阅计划.我现在想要显示用户下次开帐单的日期,但是这似乎不是通过Billable特征可用的日期.
如何获得下一个结算日期?谢谢!
解决方案是使用以下asStripeCustomer
方法:
// Retrieve the timestamp from Stripe $timestamp = $user -> asStripeCustomer()["subscriptions"] -> data[0]["current_period_end"]; // Cast to Carbon instance and return return \Carbon\Carbon::createFromTimeStamp($timestamp) -> toFormattedDateString();
请注意,我只对拥有一个订阅的用户进行了测试 - data[0]
.
您可能需要为多个订阅更改此代码,或者如果用户已取消并启动了另一个订阅.