Iranian payment gateways handler for laravel applications
amirhs712/laravel-online-payment is a Laravel package for iranian payment gateways handler for laravel applications.
It currently has 0 GitHub stars and 9 downloads on Packagist (latest version v8.1.0).
Install it with composer require amirhs712/laravel-online-payment.
Discover more Laravel packages by amirhs712
or browse all Laravel packages to compare alternatives.
Last updated
Online Payment Module handler for Laravel 5+ and 6 known as LaraPay component completely compatible with BankTest sandbox. Larapay integrated all Iranian payment gateways into one component.
Here are a few short examples of what you can do:
$transaction = $order->createTransaction(Bank::MELLAT);
$form = $transaction->generateForm();
$transaction = Larapay::verifyTransaction($request);
//if the gateway supports reverse method
$transaction->reverseTransaction();
$order = $transaction->model;
$allTransactions = $order->transations;
$accomplishedTransactions = $order->accomplishedTransactions;
$isPaid = $order->isPaid();
$paidAmount = $order->paidAmount();
Larapay Version 6+ required PHP 7+
composer require tartan/laravel-online-payment
Tartan\Larapay\LarapayServiceProvider::class,
Tartan\Log\XLogServiceProvider::class,
'Larapay' => Tartan\Larapay\Facades\Larapay::class,
'XLog' => Tartan\Log\Facades\XLog::class,
php artisan vendor:publish --provider="Tartan\Larapay\LarapayServiceProvider"
php artisan migrate
If you complete installation step correctly, you can find Larapay config file as larapay.php in you project config file.
For sandbox (banktest) you should set LARAPAY_MODE=development in your .env file otherwise set LARAPAY_MODE=production
If you choose development mode, Larapay use banktest.ir as it's payment gateway.
Set your gateway(s) configs in your .env file. Here are some example:
LARAPAY_MODE=development
SAMAN_MERCHANT_ID=bmcf****
SAMAN_MERCHANT_PASS=98221***
MELLAT_USERNAME=user***
MELLAT_PASSWORD=80714***
MELLAT_TERMINAL_ID=747
you should create a route for handling callback from bank and set your route name in .env
For example create a POST route in routes folder, web.php like this:
Route::post('payment/callback', 'YourController@handleCallback')->name('payment.callback');
then set the route name in .env file:
LARAPAY_PAYMENT_CALLBACK=payment.callback
Use Payable trait in your order model or any other model like user which will get payment feature and implement it.
You can impalement getAmount() method to return Iranian Rail amount of your model.
use Tartan\Larapay\Payable;
class Order extends Model
{
use Payable;
public function getAmount(){
return intval($this->amount) * 10;
}
}
Now you just have 3 steps to complete your payment:
In your bank controller create a transaction for your order and generate bank for to transfer user to payment gateway.
use Tartan\Larapay\Models\Enum\Bank;
class BankController extends Controller
{
public function index()
{
//your logic and prepare your order
// ...
//if you implement getAmount() method you can set amount to null
$amount = 1200000; //Rial at least 1000
//order or user description
$description = 'I pay my order with Larapay <3';
//some additional data that you need store on transaction
$additionalData = [];
//create transaction
$transaction = $order->createTransaction(Bank::MELLAT, $amount, $description, $additionalData);
//auto submit bank form and transfer user to gateway
$autoSubmit = true;
//callback route name. if you set it on your .env file you can set this to null
$callbackRouteName = 'payment.callback';
//adapter config
$adapterConfig = [];
//generate bank form
$form = $transaction->generateForm($autoSubmit, $callbackRouteName, $adapterConfig);
return view('go-to-bank',[
'form' => $form,
]);
}
}
Now you can show you $form in your go-to-bank view file:
<div>
{!! $form !!}
</div>
You can modify bank forms in:
resources/views/vendor/larapy
After payment, bank call you callback route
use Illuminate\Http\Request;
use Tartan\Larapay\Facades\Larapay;
class YourController extends Controller
{
public function handleCallback(Request $request)
{
try{
$adapterConfig = [];
$transaction = Larapay::verifyTransaction($request, $adapterConfig);
$order = $transaction->model;
//transaction done. payment is successful
} catch (\Exception $e){
// transaction not complete!!!
// show error to your user
}
}
}
If you want to revers transaction and your bank support it, you can do this way:
$transaction->reverseTransaction();
Paybel trait and your order model:$order->transactions : get all transactions of this model$order->accomplishedTransactions: get all accomplished transactions$order->isPaid(): return true if this model has at least one accomplished transaction$order->paidAmount(): return sum of accomplished transactions amount in Rial$order->createTransaction( $paymentGateway, $amount = null, $description = null, array $additionalData = [] ): create a transaction.LarapayTransaction model:$transaction->model: return the model that create this transaction. for example $order$transaction->reverseTransaction(): reverse transaction and get back money to user. (if bank support reverse transaction)$transaction->generateForm($autoSubmit = false, $callback = null): generate bank transfer form$transaction->gatewayHandler(): get gatewayHandler for advance use.LarapayTransaction model:idcreated_atupdated_atStatus in boolean:
accomplishedverifiedafter_verifiedreversedsubmittedapprovedrejectedGate information:
payment_methodbank_order_idgate_namegate_refidgate_statusextra_paramsadditional_dataOrder information:
amountdescriptionpaid_atYou can use LarapayTransaction model to find your transaction:
use Tartan\Larapay\Models\LarapayTransaction;
public function getTransaction($transactionId){
//find single transaction by transaction id
$transaction = LarapayTransaction::find($transactionId);
//get all accomplished transaction
$accomplishedTransactions = LarapayTransaction::where('accomplished',true)->get();
//get all reversed transaction
$reversedTransactions = LarapayTransaction::where('reversed',true)->get();
}
This class use SoftDeletes. you can call delete() on your transaction model to softDelete it or forceDelete() to truly remove it from your database.
If you discover any security related issues, please email [email protected] or [email protected] instead of using the issue tracker.
This component is developed by the following person(s) and a bunch of awesome contributors.
|
|
--- | --- | --- |
Aboozar Ghaffari | Milad Kianmehr | Sina Miandashti
Please contribute in package completion. This is the best support.
The Laravel Online Payment Module is open-sourced software licensed under the MIT license