#rod_ion
1 messages · Page 1 of 1 (latest)
Are you asking about installing stripe-php or initiating the StripeClient in general? https://github.com/stripe/stripe-php#getting-started
If you are using Cashier, that is actually something you need to talk to the Cashier devs about as Stripe does not develop Laravel Cashier, just the stripe-php library
I am asking how to set up stripe connect for multipayment in a laravel project
I don't understand what steps I have to take to connect stripe connect
How far have you gotten? Can you tell me what part specifically you are stuck on?
registering a user and getting a link
Gotcha. Have you decided what connect account type you want to use? (Standard, Express, or Custom)
i think express
Where can I read how payments between users are made through the main account
This guide shows how to create Express accounts and send out onboarding links for them https://stripe.com/docs/connect/express-accounts
And then with Express accounts you have a couple of options for how to charge your users
The most common for Express accounts are destination charges:
https://stripe.com/docs/connect/destination-charges
And separate charges & transfers
https://stripe.com/docs/connect/charges-transfers
Do I have to create an account for each user ?
Yes
how do i do it ? and what data should i keep for each user to authorize with stripe ?
This step shows how to create an account https://stripe.com/docs/connect/express-accounts#create-account
I would highly recommend reading through that whole doc