teepluss/epay

Laravel Epay is payment gateway adapter.

Downloads

123

Stars

4

Version

1.0.1

Epay for Laravel 4

Epay is deprecated. Please use the Gateway

Epay is payment gateway adapters.

Installation

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'

)

Usage

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);

Support or Contact

If you have some problem, Contact [email protected]

Support via PayPal

teepluss

Author

teepluss