telr_payment/telr 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

telr_payment/telr

Composer 安装命令:

composer require telr_payment/telr

包简介

Pay online through telr payment gateway

README 文档

README

Installation

You can install the package via composer:

composer require telr_payment/telr

In Laravel starting from 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:

'providers' => [
    // ...
    TelrPaymentGateway\TelrServiceProvider::class,
];

You can publish using the following provider

php artisan vendor:publish --provider="TelrPaymentGateway\TelrServiceProvider"

After that you can create the telr transaction table by running the migrations command:

php artisan migrate

When published, the config/telr.php config file contains:

return [
    // The current mode is live|production or test
    'test_mode' => env('TELR_TEST_MODE', true),

    // The currency of store

    'currency' => 'SAR',

    // The sale endpoint that receive the params
    // @see https://telr.com/support/knowledge-base/hosted-payment-page-integration-guide
    'sale' => [
        'endpoint' => 'https://secure.telr.com/gateway/order.json',
    ],

    // The hosted payment page use the following params as it explained in the integration guide
    // @see https://telr.com/support/knowledge-base/hosted-payment-page-integration-guide/#request-method-and-format
    'create' => [
        'ivp_method' => "create",
        'ivp_store' => env('TELR_STORE_ID', null),
        'ivp_authkey' => env('TELR_STORE_AUTH_KEY', null),
        'return_auth' => '/handle-payment/success',
        'return_can' => '/handle-payment/cancel',
        'return_decl' => '/handle-payment/declined',
    ]
];

Usage

After creating the route place the following code to redirect to bank page

$telrManager = new \TelrPaymentGateway\TelrManager();

$billingParams = [
        'first_name' => 'Saeed',
        'sur_name' => 'Khan',
        'address_1' => 'test 123',
        'address_2' => 'test 2',
        'city' => 'City Name',
        'region' => 'State Name',
        'zip' => 'Zip Code',
        'country' => '2 letter Country Code',
        'email' => 'example@company.com',
    ];

return $telrManager->pay('ORDER_ID_GOES_HERE', 'TOTAL_AMOUNT', 'DESCRIPTION ...', $billingParams)->redirect();
  • note that if you want to avoid sending billing params while creating token to process the payment it's applicable and the Telr hosted payment page will require it and will get the customer information oncheckrequest.

And on telr callback (Success|Cancel|Declined) to handle response put the following code:

$telrManager = new \TelrPaymentGateway\TelrManager();
$telrManager->handleTransactionResponse($request);

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-08-10

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固