1. Go to this page and download the library: Download seerbit/seerbit-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/ */
php
namespace App\Http\Controllers;
use SeerbitLaravel\Facades\Seerbit;
class Standard
{
public function Checkout(){
try{
$uuid = bin2hex(random_bytes(6));
$transaction_ref = strtoupper(trim($uuid));
$payload = [
"amount" => "1000",
"callbackUrl" => "http:yourwebsite.com",
"country" => "NG",
"currency" => "NGN",
"email" => "[email protected]",
"paymentReference" => $transaction_ref,
"productDescription" => "product_description",
"productId" => "64310880-2708933-427",
"tokenize" => true //optional
];
// Initialize the payment with the Facade
// Or with Facade
$trans = SeerBit::Standard()->Initialize($payload);
// You can get your redirect link for customer payment from $tran
$redirectLink = $trans['data']['payments']['redirectLink'];
// Redirect to this link in order to complete the transaction
if (!empty($redirectLink)) {
return redirect($redirectLink)->with("status", $trans['data']['message']);
} else {
// Something went wrong while initiating the transaction
return redirect()->back()->with('error', $trans['data']['message']);
}
}catch (\Exception $e){
// Handle exception handling
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.