How to achieve feature of payment to recieve after service is completed?
Hello, So idk what its called, but basically how does some websites achieve this feature where
You book for a service (You pay) -> Service gets completed -> Service provider gets paid
How does this work? Do i save the money in my account unless the service is completed? Has anyone worked on this (I'm using laravel)?
I am completely lost as i don't even know what it is called. Any help is appreciated.
-Arpit
@arpit You would use a payment gateway to capture payments from the end user. What you do with the captured funds, is then up to you. If you want to pay out a service provider when a service has been rendered, then that’s been logic and you need to write the code that does this.
Stripe has Stripe Connect for supporting a multi-party marketplace like you’ve described. A service provider would connect their Stripe account to your platform. Your platform could then charge end customers, and transfer money between your Stripe account and the service provider’s once the service has been delivered.