Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Credit Card Payment(master Card and Visa) in Laravel 5.2

Do we have any package for Credit Card Payment in Paypal in Laravel 5.2.37?

I am already following this to link my app with Paypal : http://learninglaravel.net/integrate-paypal-sdk-into-laravel-4-laravel-5 and now want to check any package for Credit Card(Master Card/Visa)

like image 574
Pankaj Avatar asked Dec 11 '22 16:12

Pankaj


2 Answers

PayPal

These packages are for PayPal only and can be used to process credit cards.

  • PayPal PHP SDK
    • PayPal Developer REST API Samples
    • PHPBuilder - Working with the PayPal API
    • 17 Educations - Paypal integration in laravel
  • laravel-paypalpayment
  • laravel-paypal

Multiple Services

These packages are for more than one payment processor and include PayPal. They can be used to process credit cards.

  • Omnipay for Laravel 5 & Lumen
    • Omnipay Simple Example
  • Payum
  • Laravel Cashier (official Laravel package; supports PayPal via Braintree; meant for subscriptions / recurring billing plans)
    • EnvatoTuts - Process Payments With Stripe and Laravel Cashier
    • ItSolutionStuff - Laravel 5 Stripe example using Laravel Cashier from Scratch
like image 63
Qevo Avatar answered Jan 17 '23 17:01

Qevo


I suggest you to use Omnipay

https://github.com/thephpleague/omnipay

It supports paypal and tens of other major payment providers, with a simple unique interface for all of them

Install & use instructions are on the github project page, package are available for composer

like image 23
Luca C. Avatar answered Jan 17 '23 18:01

Luca C.