|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/poskrypt/admin.poskrypt.com/config/ |
Upload File : |
<?php
return [
/*
* Pesapal consumer key
*/
'consumer_key' => env('PESAPAL_CONSUMER_KEY'),
/*
* Pesapal consumer secret
*/
'consumer_secret' => env('PESAPAL_CONSUMER_SECRET'),
/*
* ISO code for the currency
*/
'currency' => env('PESAPAL_CURRENCY', 'KES'),
/*
* controller method to call for instant notifications IPN as relative path from App\Http\Controllers\
* eg "TransactionController@confirmation"
*/
'ipn' => 'PesaPalController@pesaPalPaymentConfirmation',
/*
* Pesapal environment
*/
'live' => env('PESAPAL_LIVE', true),
/*
* Route name to handle the callback
* eg Route::get('donepayment', ['as' => 'paymentsuccess', 'uses'=>'PaymentsController@paymentsuccess']);
* The route name is "paymentsuccess"
*/
//'callback_route' => env('PESAPAL_CALLBACK_ROUTE'),
'callback_route' => 'subscription-confirm',
];