PHPackages                             mohamadmurad/laravel-telegram-reporter - 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. [PDF &amp; Document Generation](/categories/documents)
4. /
5. mohamadmurad/laravel-telegram-reporter

ActiveLibrary[PDF &amp; Document Generation](/categories/documents)

mohamadmurad/laravel-telegram-reporter
======================================

Get Crud Report by telegram

v1.5(3y ago)019MITPHPPHP ^7.3|^8.0

Since Sep 20Pushed 3y ago1 watchersCompare

[ Source](https://github.com/mohamadmurad/laravel-telegram-reporter)[ Packagist](https://packagist.org/packages/mohamadmurad/laravel-telegram-reporter)[ RSS](/packages/mohamadmurad-laravel-telegram-reporter/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (6)DependenciesVersions (7)Used By (0)

laravelTelegramReport
=====================

[](#laraveltelegramreport)

Easy Send Activity For Any Model To Your Telegram

Documentation
=============

[](#documentation)

install the package via composer

```
composer require mohamadmurad/laravel-telegram-reporter

```

Config file
===========

[](#config-file)

This package publishes a config/telegram-report.php file. If you already have a file by that name, you must rename or remove it, as it will conflict with this package. You could optionally merge your own values with those required by this package, as long as the keys that this package expects are present. See the source file for more details [telegram-report.php](https://github.com/mohamadmurad/laravelTelegramReport/blob/main/config/telegram-report.php)

Publish the config/telegram-report.php config file with:

```
php artisan telegram-report:install

```

Add Configration data to your .env file see [how to create bot](https://core.telegram.org/bots#3-how-do-i-create-a-bot)

```
TELEGRAM_TOKEN="Token for your telegram bot"
TELEGRAM_CHAT_ID ="your account id in telegram"

```

If you want to log CRUD on any model
====================================

[](#if-you-want-to-log-crud-on--any-model)

Add package trait to any model you want to get report about it example :

```
use mohamadmurad\LaravelTelegramReport\Traits\HasTelegramReports;

class User extends Authenticatable
{
    use HasTelegramReports;
....

}
```

the report send after create , update or delete any record in this model

If you want to send Errors to your Telegram bot
===============================================

[](#if-you-want-to-send-errors-to-your-telegram-bot)

Add this code to your Exception Handler.php

```
class Handler extends ExceptionHandler
{
     public function render($request, Throwable $e)
    {
        if (app()->bound('telegram-report')) {
            app('telegram-report')->notify($e, app('request'));
        }

        ....
    }
....

}
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

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

Every ~1 days

Total

6

Last Release

1325d ago

### Community

Maintainers

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

---

Top Contributors

[![mohamadmurad](https://avatars.githubusercontent.com/u/103927852?v=4)](https://github.com/mohamadmurad "mohamadmurad (8 commits)")

---

Tags

laravelactivityreporttelegram

### Embed Badge

![Health badge](/badges/mohamadmurad-laravel-telegram-reporter/health.svg)

```
[![Health](https://phpackages.com/badges/mohamadmurad-laravel-telegram-reporter/health.svg)](https://phpackages.com/packages/mohamadmurad-laravel-telegram-reporter)
```

###  Alternatives

[jimmyjs/laravel-report-generator

Rapidly Generate Simple Pdf &amp; Excel Report on Laravel 5 (Using Barryvdh/DomPdf or Barryvdh/laravel-snappy &amp; maatwebsite/excel)

580157.4k1](/packages/jimmyjs-laravel-report-generator)[ghanem/reportable

Reportable Polymorphic Eloquent Models for Laravel 6, 7, 8, 9, 10, 11 &amp; 12

347.6k](/packages/ghanem-reportable)[samuelterra22/laravel-report-generator

Rapidly Generate Simple Pdf, Excel &amp; CSV Reports on Laravel (Using Barryvdh/DomPdf or Barryvdh/laravel-snappy &amp; maatwebsite/excel)

125.3k](/packages/samuelterra22-laravel-report-generator)

PHPackages © 2026

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