定制 prabin/esewa 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

prabin/esewa

Composer 安装命令:

composer require prabin/esewa

包简介

README 文档

README

License

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

  1. Install the eSewa package via Composer:

    composer require prabin/esewa
  2. Publish the vendor files:

    php artisan vendor:publish
  3. Add the following code to your config/app.php file in the providers section:

    Prabin\Esewa\EsewaServiceProvider::class,

Usage

  1. Define Routes:

    Route::get('/payment-success', [EsewaController::class, 'success'])->name('payment.success');
    Route::get('/payment-failure', [EsewaController::class, 'failure'])->name('payment.failure');
  2. 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 我们能提供哪些服务?
定制开发 / 二次开发

基于 prabin/esewa 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 27
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 4
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-02-16