PayumLaravelPackage icon indicating copy to clipboard operation
PayumLaravelPackage copied to clipboard

Payum offers everything you need to work with payments. From simplest use cases to very advanced ones.

Results 8 PayumLaravelPackage issues
Sort by recently updated
recently updated
newest added

Hello, I am trying to call the configuration of the gateways which are already in a given database, in a format other than that of the payum documentation, because they...

As route `payum_notify_do_unsafe` describe, this controller should recieve a `gateway_name` parameter, to retrive the right gateway from payum. Instead this method receive a `Request` object and cannot get the right...

This PR fix an error with doUnsafeAction of Notify Controller. This controller not resolve the gateway name parameter define in the related route, and cannot permit to use the notifications...

I have this: ```php private function refund($payum_token) { $request = \App::make('request'); $request->attributes->set('payum_token', $payum_token); $token = $this->getPayum()->getHttpRequestVerifier()->verify($request); $gateway = $this->getPayum()->getGateway($token->getGatewayName()); try { $gateway->execute(new Refund($token)); } catch (ReplyInterface $reply) { return $this->convertReply($reply);...

I am working with Laravel Cashier and I have found out that you can't define a custom start / end date for subscriptions. It is inconvenient in our case because...

Hi, I am implementing paypal express checkout with this package, implemented prepare method and done controller with routes but after execution of prepare method got a target url Like :...

Im trying to install this package with a fresh install of the latest Laravel and i keep getting a error in the console `Problem 1 - payum/payum-laravel-package dev-master requires illuminate/container...