PHPackages                             tomatophp/filament-logger - 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. [Logging &amp; Monitoring](/categories/logging)
4. /
5. tomatophp/filament-logger

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

tomatophp/filament-logger
=========================

Log all user activity to file or log driver and preview it on your FilamentPHP panel

v1.0.4(1y ago)162.2k↓100%6[4 issues](https://github.com/tomatophp/filament-logger/issues)[1 PRs](https://github.com/tomatophp/filament-logger/pulls)MITPHPPHP ^8.1|^8.2

Since Sep 22Pushed 1y ago1 watchersCompare

[ Source](https://github.com/tomatophp/filament-logger)[ Packagist](https://packagist.org/packages/tomatophp/filament-logger)[ GitHub Sponsors](https://github.com/3x1io)[ RSS](/packages/tomatophp-filament-logger/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (5)Versions (6)Used By (0)

[![Screenshot](https://raw.githubusercontent.com/tomatophp/filament-logger/master/arts/3x1io-tomato-logger.jpg)](https://raw.githubusercontent.com/tomatophp/filament-logger/master/arts/3x1io-tomato-logger.jpg)

Filament logger
===============

[](#filament-logger)

[![Latest Stable Version](https://camo.githubusercontent.com/1f72bfd370641a82e85a4c9d1c0eccc0af76805ad476ebc84f9b4d3ae81e8ebb/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6c6f676765722f76657273696f6e2e737667)](https://packagist.org/packages/tomatophp/filament-logger)[![License](https://camo.githubusercontent.com/473c791e9635e53cdd739602a07d82f9b0266d650f554feb2f355e91e326469b/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6c6f676765722f6c6963656e73652e737667)](https://packagist.org/packages/tomatophp/filament-logger)[![Downloads](https://camo.githubusercontent.com/9887e8517b2312589b9c3e13eb1801e60a431acabfc2c21809d2f49b72434f0b/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6c6f676765722f642f746f74616c2e737667)](https://packagist.org/packages/tomatophp/filament-logger)

Log all user activity to file or log driver and preview it on your FilamentPHP panel

Screenshots
-----------

[](#screenshots)

[![Logger](https://raw.githubusercontent.com/tomatophp/filament-logger/master/arts/logger.png)](https://raw.githubusercontent.com/tomatophp/filament-logger/master/arts/logger.png)[![View Log](https://raw.githubusercontent.com/tomatophp/filament-logger/master/arts/view-log.png)](https://raw.githubusercontent.com/tomatophp/filament-logger/master/arts/view-log.png)[![Log File](https://raw.githubusercontent.com/tomatophp/filament-logger/master/arts/log-file.png)](https://raw.githubusercontent.com/tomatophp/filament-logger/master/arts/log-file.png)

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

[](#installation)

```
composer require tomatophp/filament-logger
```

after install your package please run this command

```
php artisan filament-logger:install
```

finally register the plugin on `/app/Providers/Filament/AdminPanelProvider.php`

```
->plugin(\TomatoPHP\FilamentLogger\FilamentLoggerPlugin::make())
```

after install please publish the config file by using this command

```
php artisan vendor:publish --tag="filament-logger-config"
```

on your `filament-logger.php` config file please add the guard of user or middleware you went to track

```
    'guards' => [
        'web',
        'auth:accounts'
    ],
```

to track your panel

```
    'guards' => [
        'web',
        'panel:admin'
    ],
```

where `admin` is the id of the panel.

Using
-----

[](#using)

you can add a custom log from anywhere in your code by using this code

```
use TomatoPHP\FilamentLogger\Facades\FilamentLogger;

FilamentLogger::log(message:'Your message here', level:'info');
```

Publish Assets
--------------

[](#publish-assets)

you can publish config file by use this command

```
php artisan vendor:publish --tag="filament-logger-config"
```

you can publish languages file by use this command

```
php artisan vendor:publish --tag="filament-logger-lang"
```

you can publish migrations file by use this command

```
php artisan vendor:publish --tag="filament-logger-migrations"
```

Other Filament Packages
-----------------------

[](#other-filament-packages)

Checkout our [Awesome TomatoPHP](https://github.com/tomatophp/awesome)

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance31

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity55

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 ~3 days

Total

5

Last Release

583d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2147eb2fca7ab5f0124d0fafd88ba2d2a5dfa3a0036fb8872d1084b7cba29366?d=identicon)[fadymondy](/maintainers/fadymondy)

---

Top Contributors

[![fadymondy](https://avatars.githubusercontent.com/u/11937812?v=4)](https://github.com/fadymondy "fadymondy (9 commits)")

---

Tags

phplaravelloggerfilament-pluginfilamentphp

### Embed Badge

![Health badge](/badges/tomatophp-filament-logger/health.svg)

```
[![Health](https://phpackages.com/badges/tomatophp-filament-logger/health.svg)](https://phpackages.com/packages/tomatophp-filament-logger)
```

###  Alternatives

[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

205144.8k5](/packages/bezhansalleh-filament-google-analytics)[prettus/laravel-request-logger

HTTP request logger middleware for Laravel

24646.6k1](/packages/prettus-laravel-request-logger)[tomatophp/filament-types

Manage any type on your app in Database with easy to use Resource for FilamentPHP

5616.7k8](/packages/tomatophp-filament-types)[tomatophp/filament-api

Generate APIs from your filament resource using single line of code

507.1k1](/packages/tomatophp-filament-api)[alizharb/filament-activity-log

A powerful, feature-rich activity logging solution for FilamentPHP v4 &amp; v5 with timeline views, dashboard widgets, and revert actions.

2326.6k](/packages/alizharb-filament-activity-log)[onlime/laravel-http-client-global-logger

A global logger for the Laravel HTTP Client

1935.1k](/packages/onlime-laravel-http-client-global-logger)

PHPackages © 2026

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