teepluss/epay is a Laravel package for laravel epay is payment gateway adapter..
It currently has 4 GitHub stars and 125 downloads on Packagist (latest version 1.0.1).
Install it with composer require teepluss/epay.
Discover more Laravel packages by teepluss
or browse all Laravel packages to compare alternatives.
Last updated
Epay is deprecated. Please use the Gateway
Epay is payment gateway adapters.
To get the lastest version of Epay simply require it in your composer.json file.
"teepluss/epay": "dev-master"
You'll then need to run composer install to download it and have the autoloader updated.
Once Epay is installed you need to register the service provider with the application. Open up app/config/app.php and find the providers key.
'providers' => array(
'Teepluss\Epay\EpayServiceProvider'
)
Epay also ships with a facade which provides the static syntax for creating collections. You can register the facade in the aliases key of your app/config/app.php file.
'aliases' => array(
'Epay' => 'Teepluss\Epay\Facades\Epay'
)
Generate payment form.
$adapter = Epay::factory('paypal');
$adapter->setSandboxMode(true);
$adapter->setSuccessUrl('http://www.domain/foreground/success')
->setCancelUrl('http://www.domain/foreground/cancel')
->setBackendUrl('http://www.domain/background/invoice/00001');
$adapter->setMerchantAccount('[email protected]');
$adapter->setLanguage('TH')
->setCurrency('THB');
$adapter->setInvoice(00001)
->setPurpose('Buy a beer.')
->setAmount(100);
$adapter->setRemark('Short note');
$generated = $adapter->render();
var_dump($generated);
Checking foregound process.
$adapter = Epay::factory('paypal');
$adapter->setSandboxMode(true);
$adapter->setMerchantAccount('[email protected]');
$adapter->setInvoice(00001);
$result = $adapter->getFrontendResult();
var_dump($result);
Checking background process (IPN)
$adapter = Epay::factory('paypal');
$adapter->setSandboxMode(true);
$adapter->setMerchantAccount('[email protected]');
$adapter->setInvoice(00001);
$result = $adapter->getBackendResult();
var_dump($result);
If you have some problem, Contact [email protected]