Harshith J Poojary
Harshith J Poojary

Reputation: 331

How to use other payment gateway in Laravel cashier?

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?

Upvotes: 2

Views: 1766

Answers (1)

Mateus Junges
Mateus Junges

Reputation: 2602

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

Upvotes: 2

Related Questions