Sander van Hooft

Results 189 comments of Sander van Hooft

True! I'll hijack this ticket as a reference. Also, feel free to help me out with a PR. My focus primarily shifts to Spark for the next month.

I'd like to stay as close to Cashier for Stripe as possible, so let's start there. Cashier for Stripe offers the following on the Billable trait for one off charges...

As I understand it (Cashier for Stripe): - `charge()` and `tab()` result in charges to be processed in the upcoming bill, so the billing cycle is left intact. - `invoice()`...

Ok, the laravel docs state that the difference is just charging with or without an invoice... 😕

Checking this with Dries. On another note, I'd like to either return a RedirectToCheckout, an Order (or an OrderItemCollection), depending on whether the customer has registered a valid payment mandate....

Thanks @driesvints !

Hi @mmachatschek, I don't agree. The first line checks if there's a mandate id available, regardless of what method is configured on the subscription plan. If there is a mandate...

I'm trying to understand what you mean. Is this issue with this line? ```php && $mandate->method === $method ``` Would changing it to this solve your issue? ```php && (is_null($method)...

Thanks @mmachatschek for the suggestion. Let's do that. Can you send in a PR? Thanks for confirming this @juancruzmartino .