#Laravel Cashier Stripe
9 messages · Page 1 of 1 (latest)
For my understanding a stripe connected account is for paying out to people (for example if you run a marketplace) subscriptions are just recurring charges which are in the cashier docs.. https://laravel.com/docs/12.x/billing#subscriptions
Right, you are allowed todo one time payments and such with cashier. However you can not do it with subscriptions. However you can do it via plain stripe API
Here is a GitHub gist of my code is anyone can help: https://gist.github.com/larson-carter/40009cc9004c1224c159605c3af01129
any suggestions not related to this issue are welcome
Not sure I know what you want tbh - you can do subscriptions with cashier.. you can also make refunds (if required) if you are sending a lot of payments out to others then that's something else.. I normally just use the api directly anyway - but according to the docs those things i mention here are possible..
I’m wanting to make it where I can accept subscription payment. I.e. DoorDash premium.
Then I pass onto the connect account the subscription amount - a fee
I.e. $100 monthly subscription - $platform fee - CC fee = what the connect account gets
Worst case I can use the stripe API for this. Cashier just made things slightly cleaner and less annoying to manage.
This is literally the last piece of functionality I need to implemented.
Ok so it is like a marketplace as I mentioned earlier - indeed AFAIK that is not in cashier, it's also not mentioned - only subscriptions and one time payments...connected accounts I would use the stripe API indeed (but like I say I do that for everything anyway)..