Search found 16 matches

by MirkoPinna
18 Sep 2017, 07:05
Forum: Laravel package
Topic: Laravel custom routes
Replies: 5
Views: 2886

Re: Laravel custom routes

Gives me an error: [ReflectionException] Class App\Http\Controllers\Aimeos\Shop\Controller\CheckoutController does not exist and if i try to remove this part: 'uses' => 'Aimeos\Shop\Controller\CheckoutController@indexAction', it shows in the routes list as follow: | | GET|POST|HEAD | checkout | aime...
by MirkoPinna
15 Sep 2017, 12:34
Forum: Laravel package
Topic: Laravel custom routes
Replies: 5
Views: 2886

Laravel custom routes

I am trying to add a custom middleware in the /checkout route but seems like it doesn't want to work. I followed the steps at https://aimeos.org/docs/Laravel/Custom_routes So i added this piece of code to /app/Http/routes.php : Route::match( array( 'GET', 'POST' ), 'checkout', array( 'as' => 'aimeos...
by MirkoPinna
14 Sep 2017, 07:57
Forum: Laravel package
Topic: Insert step in checkout only if necessary
Replies: 1
Views: 1388

Insert step in checkout only if necessary

Hi i want to login the user before payment and redirect it to a different page if necessary, all inside the checkout process.
Is is possible? how can i achieve it?
by MirkoPinna
06 Sep 2017, 14:36
Forum: Laravel package
Topic: Implementing MangoPay Service Provider
Replies: 1
Views: 1067

Implementing MangoPay Service Provider

Hi i am trying to implement MangoPay as a payment provider, i created the provider and it is recognized in the admin panel. So far everything is good, but i would like to generate a form in the checkout process as described here: https://aimeos.org/docs/Developers/Library/Service/Implement_payment_p...
by MirkoPinna
04 Sep 2017, 13:52
Forum: Help
Topic: Create Payment service
Replies: 1
Views: 1166

Re: Create Payment service

Ok i found the error
in the aimeos documentation the skeleton is wrong.
instead of:

Code: Select all

namespace \Aimeos\MShop\Service\Provider\Payment;
use:

Code: Select all

namespace Aimeos\MShop\Service\Provider\Payment;
by MirkoPinna
04 Sep 2017, 12:54
Forum: Help
Topic: Create Payment service
Replies: 1
Views: 1166

Create Payment service

Hi, i am trying to implement a Paymen service to include Mangopay in my payment choices. I created a MangoPay.php and i did put it into /ext/ai-mangopay/lib/custom/src/MShop/Service/Provider/Payment/MangoPay.php Then i added the new payment method using the admin console. But i get the following err...