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

ActiveLibrary[Payment Processing](/categories/payments)

abdallahmohammed/laravel-telr
=============================

Pay online with Telr payment gateway through Laravel

v1.0.1(2y ago)049MITPHPPHP ^7.4|^8.0

Since Mar 24Pushed 2y ago1 watchersCompare

[ Source](https://github.com/AbdallaMohammed/laravel-telr)[ Packagist](https://packagist.org/packages/abdallahmohammed/laravel-telr)[ RSS](/packages/abdallahmohammed-laravel-telr/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (4)Versions (2)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 abdallahmohammed/laravel-telr
```

In Laravel starting from 6.x 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' => 'John',
        'sur_name' => 'Doe',
        // optional
        // 'address_1' => '',
        // 'address_2' => '',
        // 'city' => '',
        // 'region' => '',
        // 'zip' => '',
        'country' => 'EG',
        'email' => 'abdallah.r660@gmail.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 its 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:
```php
use \TelrGateway\TelrManager;

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

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

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

Unknown

Total

1

Last Release

832d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/528edaaf4cec2c4872feecfe766beb012b234e9479334fa3cdf216d7b180fca9?d=identicon)[AbdullahMohamedRezk](/maintainers/AbdullahMohamedRezk)

---

Top Contributors

[![AbdallaMohammed](https://avatars.githubusercontent.com/u/41541325?v=4)](https://github.com/AbdallaMohammed "AbdallaMohammed (2 commits)")

---

Tags

laravelpaymenttelrtelr payment

### Embed Badge

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

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

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

77022.3M151](/packages/laravel-mcp)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

816333.8k3](/packages/defstudio-telegraph)[api-platform/laravel

API Platform support for Laravel

58171.5k14](/packages/api-platform-laravel)[linkxtr/laravel-qrcode

A clean, modern, and easy-to-use QR code generator for Laravel

3720.4k](/packages/linkxtr-laravel-qrcode)

PHPackages © 2026

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