NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
# Single Charges If you would like to make a "one off" charge against a subscribed customer's credit card, you may use the charge method: `$user->charge(100);` The charge method accepts the amount you would like to charge in the lowest denominator of the currency. So, for example, the example above will charge 100 cents, or $1.00, against the user's credit card. The charge method accepts an array as its second argument, allowing you to pass any options you wish to the underlying Stripe charge creation: ``` $user->charge(100, [ 'source' => $token, 'receipt_email' => $user->email, ]); ``` The charge method will return false if the charge fails. This typically indicates the charge was denied: ``` if ( ! $user->charge(100)) { // The charge was denied... } ``` If the charge is successful, the full Stripe response will be returned from the method.