dev-master
9999999-dev http://chilion.nl/published-cmpayservice-for-laravel-package/Use the CM Pay service with Laravel
MIT
The Requires
by Chilion Snoek
Use the CM Pay service with Laravel
CmPayService is a Laravel package for the API of CM Payments. (pay.cm.nl), (*1)
Require it:, (*2)
Add the following data:, (*3)
Execute the following commands in your console: - sudo composer selfupdate - sudo composer update - sudo php artisan vendor:publish, (*4)
After executing the vendor:publish command you will find a config file in the Laravel config folder. Fill the Mandatory fields, check the optional., (*5)
Don't forget to fill in the right company name and product token, (*6)
For payment methods & options: - CmPayService::getPaymentMethods($amount (should be integer));, (*7)
To forward the customer to the payment screen of their financial instance. - CmPayService::getTransactionUrl($amount, $method, $option, $parameters);, (*8)
# | $ | Description |
---|---|---|
1 | $amount | The amount of the order to process |
2 | $method | The Payment method, this can be iDeal, Mr. Cash, etc |
3 | $option | The Payment option, depends on the $method. |
4 | $parameters | This is an array with multiple key's as information |
The Parameters options:, (*9)
Key | Description | Type |
---|---|---|
"reference" | The reference for the order | varchar |
"return_url" | The base URL that gets returned to | url |
"success_url" | The part that goes behind the base URL | text |
"fail_url" | The part that goes behind the base URL | text |
"cancel_url" | The part that goes behind the base URL | text |
"error_url" | The part that goes behind the base URL | text |
Use the CM Pay service with Laravel
MIT