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

todayforfuture's avatar

Credit card and Bank transfer in Laravel

I want to integrate Paypal to my Laravel project. So that users can pay via credit card and bank transfer. It is possible using Paypal API? If it is possible how can I test it using Sandbox? Thanks

0 likes
9 replies
todayforfuture's avatar

I know this. But I want to pay without login to paypal via credit card or bank transfer

kokoshneta's avatar

@todayforfuture As far as I know, yes. The PayPal API is used to let the user use their PayPal account to create a payment, but it still has to come from their account.

You can use other integrations, like Stripe, to provide card payments without the need for any login (though you need to have a Stripe account set up for that to work), but bank transfers require some sort of access to the user’s own bank account. How had you imagined that could possibly work without the user somehow logging in and authorising money to be taken from their account?

jlrdw's avatar

@todayforfuture you need to explain to your client you can't just be taking people's credit cards in their system it needs to be done through the payment Gateway in your case PayPal.

Please or to participate in this conversation.