PHP code example of xcrone / securepay-laravel
1. Go to this page and download the library: Download xcrone/securepay-laravel library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
xcrone / securepay-laravel example snippets
'SecurePay' => Xcrone\Facades\SecurePay::class
Xcrone\SecurePayServiceProvider::class
use Xcrone\SecurePay;
use Illuminate\Http\Request;
/**
* Demo payment.
*
* @param \Illuminate\Http\Request $request
* @return \GuzzleHttp\Psr7\Stream
*/
public function pay(Request $request)
{
$securepay = new SecurePay;
$data = [
'order_number' => rand(1111111111, 9999999999),
'buyer_name' => 'John Doe',
'buyer_email' => '[email protected] ',
'buyer_phone' => '+60114444444',
'transaction_amount' => 300.00,
'product_description' => 'Payment for item: ' . $request->product_id,
'callback_url' => 'http://callback_url',
'redirect_url' => 'http://redirect_url',
'cancel_url' => 'http://cancel_url',
'params' => [
'selected_item' => $request->selected_item,
'selected_item2' => $request->selected_item2,
],
'redirect_post' => 'true',
];
return $securepay->createPayment($data);
}
$securepay = new SecurePay;
return $securepay->getRetailBankList();
$securepay = new SecurePay;
$online = true; // true = 'online', false = 'offline'
return $securepay->getRetailBankList($online);
$securepay = new SecurePay;
return $securepay->getCorporateBankList();
$securepay = new SecurePay;
$online = true; // true = 'online', false = 'offline'
return $securepay->getCorporateBankList($online);
bash
php artisan vendor:publish --provider="Xcrone\SecurePayServiceProvider"