Home > Mobile >  How to use other payment gateway in Laravel cashier?
How to use other payment gateway in Laravel cashier?

Time:10-31

I am working on Saas based application where I am using Laravel cashier. By default, Laravel cashier is using stripe. I want to use Razorpay instead of the stripe. Is it possible to achieve this in Laravel cashier? If Yes, Please let me know how?

CodePudding user response:

You can only use Laravel Cashier with stripe or paddle. Currently, cashier does not support razorpay.

You can install the razorpay package here. Also, here is some guides on how to implement payment systems with razorpay:

https://www.itsolutionstuff.com/post/laravel-razorpay-payment-gateway-exampleexample.html

https://www.w3adda.com/blog/laravel-5-8-razorpay-payment-gateway-integration

  • Related