sunveloper/teepluss-gateway is a Laravel package for laravel gateway is payment gateway adapter..
It currently has 0 GitHub stars and 1 downloads on Packagist (latest version 2.0.2).
Install it with composer require sunveloper/teepluss-gateway.
Discover more Laravel packages by sunveloper
or browse all Laravel packages to compare alternatives.
Last updated
Gateway is payment gateway adapters that support Paypal, Paysbuy, Bangkok Bank, Kasikorn Bank, True Money.
To get the lastest version of Gateway simply require it in your composer.json file.
"teepluss/gateway": "dev-master"
You'll then need to run composer install to download it and have the autoloader updated.
Once Gateway is installed you need to register the service provider with the application. Open up app/config/app.php and find the providers key.
'providers' => [
...
Teepluss\Gateway\GatewayServiceProvider::class,
)
Gateway 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' => [
...
'Gateway' => Teepluss\Gateway\Facades\Gateway::class,
]
Generate payment form.
$adapter = Gateway::driver('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);
You can use intialize also.
$adapter = Gateway::driver('Paypal')->initialize(array(
'sandboxMode' => true,
'successUrl' => 'http://www.domain/foreground/success',
'cancelUrl' => 'http://www.domain/foreground/cancel',
'backendUrl' => 'http://www.domain/background/invoice/00001',
'merchantAccount' => '[email protected]',
'language' => 'TH',
'currency' => 'THB',
'invoice' => uniqid(),
'purpose' => 'Buy a beer.',
'amount' => 100,
'remark' => 'Short note'
));
$generated = $adapter->render();
var_dump($generated);
How to set TrueMoneyApi and PaysbuyApi
// True Money
$gateway = Gateway::driver('TrueMoneyApi');
$gateway->setMerchantAccount('appId:shopCode:secret:bearer');
// Paysbuy
$gateway = Gateway::driver('PaysbuyApi');
$gateway->setMerchantAccount('merchantId:username:secureCode');
// Paysbuy having non-apu version.
$gateway = Gateway::driver('Paysbuy');
$gateway->setMerchantAccount('email');
Checking foregound process.
$adapter = Gateway::driver('Paypal');
$adapter->setSandboxMode(true);
$adapter->setMerchantAccount('[email protected]');
$adapter->setInvoice(00001);
$result = $adapter->getFrontendResult();
var_dump($result);
Checking background process (IPN).
$adapter = Gateway::driver('Paypal');
$adapter->setSandboxMode(true);
$adapter->setMerchantAccount('[email protected]');
$adapter->setInvoice(00001);
$result = $adapter->getBackendResult();
var_dump($result);
Extending the core.
use Teepluss\Gateway\Drivers\DriverAbstract;
use Teepluss\Gateway\Drivers\DriverInterface;
class Strip extends DriverAbstract imlements DriverInterface {
//....
}
use Teepluss\Gateway\Repository;
Gateway::extend('Stripe', function()
{
return new Repository(new Strip);
});
TrueMoneyApi adapter need more addition required data to make it works!
$gateway = Gateway::driver('TrueMoneyApi');
$gateway->setMerchantAccount('appId:shopCode:secret:bearer');
$gateway->setSandboxMode(true);
$gateway->setSuccessUrl(URL::to('demo/thankyou'))
->setCancelUrl(URL::to('demo/thankyou'))
->setBackendUrl(URL::to('demo/background'));
$gateway->setLanguage('TH')
->setCurrency('THB');
$gateway->setInvoice(uniqid())
->setPurpose('sale');
$gateway->payer(array(
'installment' => null,
'fundingInstrument' => null,
'payerInfo' => array(
'email' => '[email protected]',
'firstName' => 'Tee',
'lastName' => 'Plus',
'payerId' => '11',
'phone' => '9999999'
),
'paymentMethod' => 'creditcard'
));
$gateway->address(array(
'cityDistrict' => 'Patumwan',
'companyName' => 'eCommerce Solution',
'companyTaxId' => '3334567',
'country' => 'Thailand',
'email' => '[email protected]',
'forename' => 'Tee',
'line1' => 'Ratchadapisak Rd.',
'line2' => 'OX',
'phone' => '0888773390',
'postalCode' => '10310',
'stateProvince' => 'Bangkok',
'surname' => 'Pluss',
));
$gateway->payment(array(
'ref1' => 1,
'ref2' => 2,
'ref3' => 3
));
$gateway->product()->add(array(
'shopCode' => null,
'itemId' => 1,
'service' => 'bill',
'productId' => 'p1',
'detail' => 'd1',
'price' => 5000,
'ref1' => '1',
'ref2' => '2',
'ref3' => '3',
));
$gateway->product()->add(array(
'shopCode' => null,
'itemId' => 2,
'service' => 'bill',
'productId' => 'p1',
'detail' => 'd1',
'price' => 300,
'ref1' => '1',
'ref2' => '2',
'ref3' => '3',
));
echo $gateway->includeSubmitButton()->render();
For old version of TrueMoney, we call TruePaymentApi instead.
$gateway = Gateway::driver('TruePaymentApi');
$gateway->setAppId('AppId')
->setShopId('ShopId')
->setPassword('Password')
->setPrivateKey('PrivateKey')
->setRC4Key('RC4Key');
// $gateway->setMerchantAccount('appId:ShopId:Password:PrivateKey:RC4Key');
$gateway->setSandboxMode(true);
$gateway->setSuccessUrl(URL::to('demo/thankyou'))
->setCancelUrl(URL::to('demo/thankyou'))
->setBackendUrl(URL::to('demo/background'));
$gateway->setLanguage('TH')
->setCurrency('THB');
$gateway->setRemark('Something');
$gateway->setInvoice(uniqid());
$gateway->payer(array(
'ssoId' => '4620762',
'trueId' => '[email protected]',
'fullName' => 'Test Dev2',
'address' => 'RS ห้วยขวาง ห้วยขวาง',
'district' => 'ห้วยขวาง',
'province' => 'กรุงเทพมหานคร',
'zip' => '11115',
'country' => 'Thailand',
'mphone' => '0890000001',
'citizenId' => '4100799036048'
));
$gateway->billing(array(
'fullname' => 'Teepluss',
'address' => '33/1 Pattanakarn',
'district' => 'Pattanakarn',
'province' => 'Bangkok',
'zip' => '10220',
'country' => 'Thailand'
));
$gateway->product()->add(array(
'pid' => 18051,
'productId' => 'ME161',
'topic' => 'Winnie Jewelry : ต่างหูสแควร์ไดมอนด์ (ME162)',
'quantity' => 1,
'totalPrice' => 10,
'shopIdRef' => 'inherit',
'marginPrice' => 0
));
$gateway->product()->add(array(
'pid' => 18052,
'productId' => 'ME162',
'topic' => 'Winnie Jewelry : ต่างหูสแควร์ไดมอนด์ (ME162)',
'quantity' => 3,
'totalPrice' => 10,
'shopIdRef' => 'inherit',
'marginPrice' => 0
));
echo $gateway->includeSubmitBtn()->render();
If you have some problem, Contact [email protected]