Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

domantas's avatar

Are Cashier single charge is suitable for this task?

I want to charge the customer 1 euro whenever he wants to do the calculations offered in my system. Every time the customer wants to perform the calculations again, he will have to pay 1 euro again. Would a Laravel Cashier single charge be suitable for such a task or I should choose a simple Stripe SDK?

0 likes
1 reply
martinbean's avatar

@domantas It’s a simple, single charge. Yes, it’s something you can do with Cashier so long as you have a valid Payment Method object for your customer: https://laravel.com/docs/8.x/billing#simple-charge

If you would like to make a one-time charge against a customer, you may use the charge method on a billable model instance. You will need to provide a payment method identifier as the second argument to the charge method

1 like

Please or to participate in this conversation.