omnipay icon indicating copy to clipboard operation
omnipay copied to clipboard

Undefined type 'Omnipay\Omnipay'

Open CSharpDaddy opened this issue 3 years ago • 0 comments
trafficstars

Does anyone know what's causing this?

Im using laravel 9

<?php

namespace App\Http\Controllers;
use Omnipay\Omnipay;

class PaymentController extends Controller
{
    private $gateway;
    
    public function __construct()
    {
        $this->gateway = Omnipay::create('PayPal_Rest');
    }
}

CSharpDaddy avatar Sep 24 '22 06:09 CSharpDaddy