简体   繁体   中英

Paypal integration with Laravel 5.1

I'm trying to integrate payment gateway (paypal) with laravel 5.1. I found some solutions for laravel 4, but none for laravel 5.0 and above.

I have been following all the steps mentioned in this link. xroot/laravel-paypalpayment

But I am getting FatalErrorException in PaypalPaymentController.php line 10:

I've attached my Paypal ntegration code, and a screen shot of the error.

Router.php

resource('payment','PaymentController');

app.php

Anouar\Paypalpayment\PaypalpaymentServiceProvider::class,
'Paypalpayment'   => Anouar\Paypalpayment\Facades\PaypalPayment::class,

PaypalPaymentController.php

    <?php
namespace my_app\Http\Controllers;
use Illuminate\Support\Facades\Cache;
use Illuminate\Http\Request;
use my_app\Http\Requests;
use my_app\Http\Controllers\Controller;
use Paypalpayment;
    class PaypalPaymentController extends Facades {
    private $_apiContext;
    private $_ClientId=''/* ... */;
    private $_ClientSecret=''/* ... */;

    public function __construct(){
        // ### Api Context
        // Pass in a `ApiContext` object to authenticate 
        // the call. You can also send a unique request id 
        // (that ensures idempotency). The SDK generates
        // a request id if you do not pass one explicitly. 
        $this->_apiContext = Paypalpayment:: ApiContext(
                Paypalpayment::OAuthTokenCredential(
                    $this->_ClientId,
                    $this->_ClientSecret
                )
        );
        // dynamic configuration instead of using sdk_config.ini
        $this->_apiContext->setConfig(array(
            'mode' => 'sandbox',
            'http.ConnectionTimeOut' => 30,
            'log.LogEnabled' => true,
            'log.FileName' => __DIR__.'/../PayPal.log',
            'log.LogLevel' => 'FINE'
        ));
    }
    /*
     * Create payment using credit card
     * url:payment/create
    */
    public function create(){
        // ### Address
        // Base Address object used as shipping or billing
        // address in a payment. [Optional]
        $addr= Paypalpayment::Address();
        $addr->setLine1(/* ... */);
        $addr->setLine2(/* ... */);
        $addr->setCity(/* ... */);
        $addr->setState(/* ... */);
        $addr->setPostal_code(/* ... */);
        $addr->setCountry_code(/* ... */);
        $addr->setPhone(/* ... */);
        // ### CreditCard
        // A resource representing a credit card that can be
        // used to fund a payment.
        $card = Paypalpayment::CreditCard();
        $card->setType(/* ... */);
        $card->setNumber(/* ... */);
        $card->setExpire_month(/* ... */);
        $card->setExpire_year(/* ... */);
        $card->setCvv2(/* ... */);
        $card->setFirst_name(/* ... */);
        $card->setLast_name(/* ... */);
        $card->setBilling_address($addr);
        // ### FundingInstrument
        // A resource representing a Payer's funding instrument.
        // Use a Payer ID (A unique identifier of the payer generated
        // and provided by the facilitator. This is required when
        // creating or using a tokenized funding instrument)
        // and the `CreditCardDetails`
        $fi = Paypalpayment::FundingInstrument();
        $fi->setCredit_card($card);
        // ### Payer
        // A resource representing a Payer that funds a payment
        // Use the List of `FundingInstrument` and the Payment Method
        // as 'credit_card'
        $payer = Paypalpayment::Payer();
        $payer->setPayment_method("credit_card");
        $payer->setFunding_instruments(array($fi));
        // ### Amount
        // Let's you specify a payment amount.
        $amount = Paypalpayment:: Amount();
        $amount->setCurrency("USD");
        $amount->setTotal("1.00");
        // ### Transaction
        // A transaction defines the contract of a
        // payment - what is the payment for and who
        // is fulfilling it. Transaction is created with
        // a `Payee` and `Amount` types
        $transaction = Paypalpayment:: Transaction();
        $transaction->setAmount($amount);
        $transaction->setDescription("This is the payment description.");
        // ### Payment
        // A Payment Resource; create one using
        // the above types and intent as 'sale'
        $payment = Paypalpayment:: Payment();
        $payment->setIntent("sale");
        $payment->setPayer($payer);
        $payment->setTransactions(array($transaction));
        // ### Create Payment
        // Create a payment by posting to the APIService
        // using a valid ApiContext
        // The return object contains the status;
        try {
            $payment->create($this->_apiContext);
        } catch (\PPConnectionException $ex) {
            return "Exception: " . $ex->getMessage() . PHP_EOL;
            var_dump($ex->getData());
            exit(1);
        }
        $response=$payment->toArray();

        echo"<pre>";
        print_r($response);
        //var_dump($payment->getId());
        //print_r($payment->toArray());//$payment->toJson();
    }  
    /*
        Use this call to get a list of payments. 
        url:payment/
    */
    public function index(){
        echo "<pre>";
        $payments = Paypalpayment::all(array('count' => 1, 'start_index' => 0),$this->_apiContext);
         print_r($payments);
    }
}

The error I am getting: 在此处输入图片说明

I do not know your codebase, but if your class is a controller, why are you extending a Facades class? The issue is that your code is looking for the Facades class in your my_app\\Http\\Controllers namespace.

Removing that line or correctly importing the class will resolve your issue. However, I think you may need to rethink your design here.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM