laravel-cashier-mollie icon indicating copy to clipboard operation
laravel-cashier-mollie copied to clipboard

Official Mollie integration for Laravel Cashier

Results 33 laravel-cashier-mollie issues
Sort by recently updated
recently updated
newest added

Hello, I want to charge a big amount in multiple smaller amounts every month. For example the customer buys a 5000$ product I want to charge him 1000$ every month...

In one of my projects I installed a package that depended on the akaunting/money package. These both use a money helper. The akaunting/money package overrides the money helper in the...

We have switched from `cashier_plans.php` to our own database plan table. Since then the cycle date calculation is very strange. Before we had monthly (**1 month**) cycles that looked like...

We have our own PercentageDiscountHandler and calculate the percentage based on the subtotal, because we sell B2B. Due to maintenance reasons I would like to use the PercentageDiscountHandler of this...

It would be great we could set the `orderable` morph relationship for one time charges like so: ```php $product = App\Models\SomethingOrderable::find(1); $result = $user->newCharge(); $item = new ChargeItemBuilder($user); $item->quantity($data->qty); $item->unitPrice(money($data->price*100,'EUR'));...

major release

Retrying failed payment doesn't update cycle_ends_at on subscription when the payment succeeds. Reproduction steps: 1. Let Cashier create a payment for a new subscription cycle. 2. Set the payment status...

Add some details and examples on how to use Cashier Mollie with a SPA. I.e. #71

https://github.com/laravel/cashier-mollie/issues/115 The use case has been asked before, however this question is 3yrs old and I'm not aware of any updates on this so far.

Hello, In the previous version of this library custom webhook controllers were as far as I'm aware a popular way of handling the webhooks. Now in V2 the library handles...