prabin/esewa
Composer 安装命令:
composer require prabin/esewa
包简介
README 文档
README
This repository contains the source code and resources for integrating the eSewa payment gateway into a Laravel application.
#Lets start from form When you copy form from esewa please make sure to include please make sure this action fild should be live url in case of production site
<form action="https://uat.esewa.com.np/epay/main" method="POST"> <input value="100" name="tAmt" type="hidden"> <input value="90" name="amt" type="hidden"> <input value="5" name="txAmt" type="hidden"> <input value="2" name="psc" type="hidden"> <input value="3" name="pdc" type="hidden"> <input value="EPAYTEST" name="scd" type="hidden"> <input value="1234strsst" name="pid" type="hidden"> <input value="{{route('payment.success')}}" type="hidden" name="su"> <input value="{{route('payment.failure')}}" type="hidden" name="fu"> <input value="Submit" type="submit"> </form>
Environment Variables
I am using test merchant id in case of live use valid merchant id
ESEWA_URL="https://uat.esewa.com.np" ESEWA_MERCHANT="EPAYTEST" PAYMENT_VERIFICATION="https://uat.esewa.com.np/epay/transrec"
Installation and Setup
-
Install the eSewa package via Composer:
composer require prabin/esewa
-
Publish the vendor files:
php artisan vendor:publish
-
Add the following code to your
config/app.phpfile in the providers section:Prabin\Esewa\EsewaServiceProvider::class,
Usage
-
Define Routes:
Route::get('/payment-success', [EsewaController::class, 'success'])->name('payment.success'); Route::get('/payment-failure', [EsewaController::class, 'failure'])->name('payment.failure');
-
Create Controller Methods:
namespace App\Http\Controllers; use Prabin\Esewa\EsewaPayment; use Illuminate\Http\Request; class EsewaController extends Controller { public function success(Request $request) { $payment=new EsewaPayment(); // please make sure this totalAmount is come through your database // eg:$product=Product::find('id',$request->pid)->first(); // totalAmount=$product->totalamout; // in my case i am passing 100; $actualAmount=100; $response=$payment->paymentVerify($request->oid,$request->amt,$request->refId,$actualAmount); if(strpos($response,'Success')!==false){ // if you have orders and payment database then update your database return 'Payment Completed Successfully';//return where you want eg:return redirect('/') } else{ return 'failed'; //return redirect('/')->with('failure','something went Wrong'); } } public function failure() { // Add logic to handle failed payments here } }
License
This project is licensed under the MIT License.
prabin/esewa 适用场景与选型建议
prabin/esewa 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 27 次下载、GitHub Stars 达 5, 最近一次更新时间为 2024 年 02 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 prabin/esewa 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 prabin/esewa 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 27
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-02-16