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?
They provide some official payment drivers, but there is plenty of community-maintained drivers which provide safe online payments for multiple vendors.
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?
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.