PHPackages                             laravel\_payment/telr - 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. laravel\_payment/telr

ActiveLibrary[Payment Processing](/categories/payments)

laravel\_payment/telr
=====================

Pay online through telr payment gateway

1.2.1(5y ago)916.0k↓21.4%14[5 issues](https://github.com/bafi/telr/issues)[1 PRs](https://github.com/bafi/telr/pulls)MITPHP

Since Sep 3Pushed 1y ago2 watchersCompare

[ Source](https://github.com/bafi/telr)[ Packagist](https://packagist.org/packages/laravel_payment/telr)[ RSS](/packages/laravel-payment-telr/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)DependenciesVersions (6)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 laravel_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' => [
    // ...
    TelrGateway\TelrServiceProvider::class,
];
```

You can publish using the following provider

```
php artisan vendor:publish --provider="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 \TelrGateway\TelrManager();

$billingParams = [
        'first_name' => 'Moustafa Gouda',
        'sur_name' => 'Bafi',
        'address_1' => 'Gnaklis',
        'address_2' => 'Gnaklis 2',
        'city' => 'Alexandria',
        'region' => 'San Stefano',
        'zip' => '11231',
        'country' => 'EG',
        'email' => 'example@company.com',
    ];
$currency = 'SAR'; //it is completely optional if this currency is not passed then the currency from config is taken
return $telrManager->pay('ORDER_ID_GOES_HERE', 'TOTAL_AMOUNT', 'DESCRIPTION ...', $billingParams,$currency)->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.

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

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

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance21

Infrequent updates — may be unmaintained

Popularity35

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 50% 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.

###  Release Activity

Cadence

Every ~184 days

Total

5

Last Release

2077d ago

Major Versions

0.0.1 → 1.02018-09-03

### Community

Maintainers

![](https://www.gravatar.com/avatar/44a1f5b06a678422e3eb2ae716a8f20bcee68a70727deed0a6db71c7011d5a64?d=identicon)[Bafi](/maintainers/Bafi)

---

Top Contributors

[![bafi](https://avatars.githubusercontent.com/u/3964752?v=4)](https://github.com/bafi "bafi (4 commits)")[![dipesh79](https://avatars.githubusercontent.com/u/63183800?v=4)](https://github.com/dipesh79 "dipesh79 (3 commits)")[![absiddik96](https://avatars.githubusercontent.com/u/20370473?v=4)](https://github.com/absiddik96 "absiddik96 (1 commits)")

---

Tags

laravelpaymenttelrtelr payment

### Embed Badge

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

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

###  Alternatives

[dena-a/iran-payment

a Laravel package to handle Internet Payment Gateways for Iran Banking System

312.4k1](/packages/dena-a-iran-payment)[infyomlabs/laravel-payumoney

Laravel Payumoney Integration Library

113.9k](/packages/infyomlabs-laravel-payumoney)

PHPackages © 2026

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