Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

engrlaravel's avatar

Laravel Payment other than stripe

I am using Laravel 8. I want to implement payment(credit/debit card and PayPal) in my application. But my management do not want to use Stripe due to some restrictions in the area. What else can I use in Laravel?

How to do payment and get all features without using stripe?

0 likes
4 replies
Sinnbeck's avatar

Could you give some indication of why you dont want to use stripe and if you have another provider in mind, mention those? Or can it just be anyone in the world as long as it isnt Stripe?

1 like
jlrdw's avatar

You already said PayPal in your question, so just use PayPal.

1 like
aschmelyun's avatar

For something officially Laravel-based, Cashier provides support for both Stripe or Paddle.

However, since Laravel is a PHP framework, you can use any PHP SDK for a payment gateway. If you want Paypal and don't want to use something like their hosted button checkout service, you're going to need a mix of both Frontend and Backend code.

This looks like it's the current supported SDK for using Paypal with PHP: https://github.com/paypal/Checkout-PHP-SDK

1 like

Please or to participate in this conversation.