PHPackages                             sudhanshu-mittal/telr-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. sudhanshu-mittal/telr-laravel

ActiveLibrary[Payment Processing](/categories/payments)

sudhanshu-mittal/telr-laravel
=============================

Pay online through telr payment gateway

244PHP

Since Mar 14Pushed 3y agoCompare

[ Source](https://github.com/SAM2904/Telr-laravel)[ Packagist](https://packagist.org/packages/sudhanshu-mittal/telr-laravel)[ RSS](/packages/sudhanshu-mittal-telr-laravel/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Pay online using telr payment gateway
=====================================

[](#pay-online-using-telr-payment-gateway)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require sudhanshu-mittal/telr-laravel
```

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' => [
    // ...
    SudhanshuMittal\TelrGateway\TelrServiceProvider::class,
];
```

You can publish using the following provider

```
php artisan vendor:publish --provider="SudhanshuMittal\TelrGateway\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
-----

[](#usage)

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

```
$telrManager = new \SudhanshuMittal\TelrGateway\TelrManager();

$billingParams = [
        'first_name' => 'Robert',
        'sur_name' => 'Evans',
        'address_1' => 'Gnaklis',
        'address_2' => 'Gnaklis 2',
        'city' => 'Alexandria',
        'region' => 'San Stefano',
        'zip' => '11231',
        'country' => 'EG',
        'email' => 'example@company.com',
    ];

$req_params = [
    'user_id' => 5,
    'product_id' => 2,
    'amount' => 500,
    'short_desc' => 'cart items request payload',
];

return $telrManager->pay('ORDER_ID_GOES_HERE', 'TOTAL_AMOUNT', 'DESCRIPTION ...', $billingParams, $req_params)->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 on**check**request.

> - Also, if you want to avoid sending request params while creating token to process the payment it's applicable and the `Telr hosted payment page` will not require it. The req\_params helps you to know the request payload for which you initiate the transaction.

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

```
$telrManager = new \SudhanshuMittal\TelrGateway\TelrManager();
$telrManager->handleTransactionResponse($request);
```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity23

Early-stage or recently created project

 Bus Factor1

Top contributor holds 76.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/c2a25cc652839dc929049e6858751cde036d552786276e53301bfd0e60d935a5?d=identicon)[sam2904](/maintainers/sam2904)

---

Top Contributors

[![sudhanshu-mittal](https://avatars.githubusercontent.com/u/85557594?v=4)](https://github.com/sudhanshu-mittal "sudhanshu-mittal (13 commits)")[![bafi](https://avatars.githubusercontent.com/u/3964752?v=4)](https://github.com/bafi "bafi (3 commits)")[![absiddik96](https://avatars.githubusercontent.com/u/20370473?v=4)](https://github.com/absiddik96 "absiddik96 (1 commits)")

### Embed Badge

![Health badge](/badges/sudhanshu-mittal-telr-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/sudhanshu-mittal-telr-laravel/health.svg)](https://phpackages.com/packages/sudhanshu-mittal-telr-laravel)
```

###  Alternatives

[omnipay/paypal

PayPal gateway for Omnipay payment processing library

3156.8M53](/packages/omnipay-paypal)[eduardokum/laravel-boleto

Biblioteca com boletos para o laravel

626351.9k2](/packages/eduardokum-laravel-boleto)[tbbc/money-bundle

This is a Symfony bundle that integrates moneyphp/money library (Fowler pattern): https://github.com/moneyphp/money.

1961.9M](/packages/tbbc-money-bundle)[2checkout/2checkout-php

2Checkout PHP Library

83740.3k2](/packages/2checkout-2checkout-php)[smhg/sepa-qr-data

Generate QR code data for SEPA payments

61717.2k5](/packages/smhg-sepa-qr-data)[omnipay/dummy

Dummy driver for the Omnipay payment processing library

271.2M33](/packages/omnipay-dummy)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
