mollie

Response object - Payment with Mollie and Omnipay

流过昼夜 提交于 2020-02-24 04:20:13
问题 I'm trying to create a payment with Omnipay and Mollie in my Laravel project. I'm using the following 2 libraries: https://github.com/barryvdh/laravel-omnipay https://github.com/thephpleague/omnipay-mollie I'm doing the following in my code: $gateway = Omnipay\Omnipay::create('Mollie'); $gateway->setApiKey('test_gSDS4xNA96AfNmmdwB3fAA47zS84KN'); $params = [ 'amount' => $ticket_order['order_total'] + $ticket_order['organiser_booking_fee'], 'description' => 'Bestelling voor klant: ' . $request-

Response object - Payment with Mollie and Omnipay

末鹿安然 提交于 2020-02-24 04:20:11
问题 I'm trying to create a payment with Omnipay and Mollie in my Laravel project. I'm using the following 2 libraries: https://github.com/barryvdh/laravel-omnipay https://github.com/thephpleague/omnipay-mollie I'm doing the following in my code: $gateway = Omnipay\Omnipay::create('Mollie'); $gateway->setApiKey('test_gSDS4xNA96AfNmmdwB3fAA47zS84KN'); $params = [ 'amount' => $ticket_order['order_total'] + $ticket_order['organiser_booking_fee'], 'description' => 'Bestelling voor klant: ' . $request-