PHPackages                             batistackapp/activity-log - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. batistackapp/activity-log

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

batistackapp/activity-log
=========================

Reusable Filament plugin that renders a unified activity-log timeline for any Eloquent model

1.x-dev(1mo ago)0844↑12.5%MITPHPPHP ^8.4

Since Apr 25Pushed 1mo agoCompare

[ Source](https://github.com/BatistackApp/activity-log)[ Packagist](https://packagist.org/packages/batistackapp/activity-log)[ RSS](/packages/batistackapp-activity-log/feed)WikiDiscussions 1.x Synced 1w ago

READMEChangelog (1)Dependencies (11)Versions (2)Used By (0)

relaticle/activity-log
======================

[](#relaticleactivity-log)

[![Activity Log](art/activity-log-cover.jpg?v=1)](art/activity-log-cover.jpg?v=1)

A unified chronological timeline for any Eloquent model. Aggregates `spatie/laravel-activitylog` events (own log + related logs), timestamp columns on related models, and any custom source you define — all in one Filament-native feed.

[![Latest Version](https://camo.githubusercontent.com/236c7a7d47f24e0c5630024250bfde0ef4d18cd308bd4c55d1fe8dfd35690193/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f72656c617469636c652f61637469766974792d6c6f672e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/relaticle/activity-log)[![Total Downloads](https://camo.githubusercontent.com/ddb512264428fa152119e7fabd0b6209f6cc6e98c6bc3dc1093f555a9e370ff3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72656c617469636c652f61637469766974792d6c6f672e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/relaticle/activity-log)[![PHP 8.4+](https://camo.githubusercontent.com/1b26b7542010cd6e2ef602c4b25a4cbafc5afb74a8127a7bd2b6fe83820d1c98/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d382e342532422d626c75652e7376673f7374796c653d666f722d7468652d6261646765)](https://php.net)[![Laravel 12+](https://camo.githubusercontent.com/41837763174078789df623560472d8080f475bfdbb42fff80e94fa365889ff3a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c61726176656c2d31322532422d7265642e7376673f7374796c653d666f722d7468652d6261646765)](https://laravel.com)[![Filament 5+](https://camo.githubusercontent.com/83917fd1032a8ab4880c7c9fc54bf80e145381806e034581c4c3e56bd97a9d8b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f66696c616d656e742d352532422d6635396530622e7376673f7374796c653d666f722d7468652d6261646765)](https://filamentphp.com)[![Tests](https://camo.githubusercontent.com/05b694e4de09cae27c3f2f4cddef66b2077830a04d1e8605f14c3480944844a0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f72656c617469636c652f61637469766974792d6c6f672f74657374732e796d6c3f6272616e63683d312e78267374796c653d666f722d7468652d6261646765266c6162656c3d7465737473)](https://github.com/relaticle/activity-log/actions)

Features
--------

[](#features)

- **Unified timeline** — merge spatie logs, related-model timestamps, and custom events into one stream
- **Pluggable sources** — `fromActivityLog`, `fromActivityLogOf`, `fromRelation`, `fromCustom`, and custom `TimelineSource` classes
- **Per-event renderers** — Blade views, closures, or renderer classes bound per event or type
- **Filament-native UX** — infolist component, relation manager, and header-action slide-over
- **Dedup + filtering** — type/event allow/deny lists, date windows, priority-based dedup with override
- **Opt-in caching** — per-call TTL with explicit invalidation — no model observers

Requirements
------------

[](#requirements)

- PHP 8.4+
- Laravel 12
- Filament 5
- `spatie/laravel-activitylog` ^5

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

[](#installation)

```
composer require relaticle/activity-log
```

Usage
-----

[](#usage)

Make the model timeline-capable, then render it on a Filament resource:

```
use Relaticle\ActivityLog\Concerns\InteractsWithTimeline;
use Relaticle\ActivityLog\Contracts\HasTimeline;
use Relaticle\ActivityLog\Timeline\TimelineBuilder;
use Spatie\Activitylog\Traits\LogsActivity;

class Person extends Model implements HasTimeline
{
    use InteractsWithTimeline;
    use LogsActivity;

    public function timeline(): TimelineBuilder
    {
        return TimelineBuilder::make($this)->fromActivityLog();
    }
}
```

```
use Filament\Schemas\Schema;
use Relaticle\ActivityLog\Filament\Infolists\Components\ActivityLog;

public static function infolist(Schema $schema): Schema
{
    return $schema->components([
        ActivityLog::make('activity')->columnSpanFull(),
    ]);
}
```

**[View Complete Documentation →](https://relaticle.github.io/activity-log/)**

Our Ecosystem
-------------

[](#our-ecosystem)

### FilaForms

[](#filaforms)

[![](https://camo.githubusercontent.com/7145ea0049d6121305adc5b88794634a0fe1c853b746ec75d44b44f4c0ac481d/68747470733a2f2f66696c61666f726d732e6170702f696d672f6f672d696d6167652e706e67)](https://filaforms.app/)

Visual form builder for all your public-facing forms. [Learn more →](https://filaforms.app)

### Custom Fields

[](#custom-fields)

[![](https://github.com/Relaticle/custom-fields/raw/2.x/art/preview.png)](https://relaticle.github.io/custom-fields)

Let users add custom fields to any model without code changes. [Learn more →](https://relaticle.github.io/custom-fields)

### Flowforge

[](#flowforge)

[![](https://github.com/relaticle/flowforge/raw/4.x/art/preview.png)](https://relaticle.github.io/flowforge)

Drag-and-drop Kanban for any Laravel model. [Learn more →](https://relaticle.github.io/flowforge)

Contributing
------------

[](#contributing)

Contributions are welcome. Please see [CONTRIBUTING.md](.github/CONTRIBUTING.md) before opening an issue or pull request.

Security
--------

[](#security)

If you discover a security issue, please review our [Security Policy](.github/SECURITY.md).

Changelog
---------

[](#changelog)

Please see [CHANGELOG.md](CHANGELOG.md) for recent changes.

License
-------

[](#license)

MIT License. See [LICENSE.md](LICENSE.md) for details.

###  Health Score

41

—

FairBetter than 87% of packages

Maintenance90

Actively maintained with recent releases

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

 Bus Factor1

Top contributor holds 86.1% 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 ~0 days

Total

2

Last Release

45d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/155325740?v=4)[Vortech Studio](/maintainers/vortechstudio)[@vortechstudio](https://github.com/vortechstudio)

---

Top Contributors

[![AsmitNepali](https://avatars.githubusercontent.com/u/33512152?v=4)](https://github.com/AsmitNepali "AsmitNepali (31 commits)")[![ManukMinasyan](https://avatars.githubusercontent.com/u/2556185?v=4)](https://github.com/ManukMinasyan "ManukMinasyan (3 commits)")[![vortechstudio](https://avatars.githubusercontent.com/u/155325740?v=4)](https://github.com/vortechstudio "vortechstudio (2 commits)")

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/batistackapp-activity-log/health.svg)

```
[![Health](https://phpackages.com/badges/batistackapp-activity-log/health.svg)](https://phpackages.com/packages/batistackapp-activity-log)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3325.1M337](/packages/psalm-plugin-laravel)[spatie/laravel-health

Monitor the health of a Laravel application

88011.3M149](/packages/spatie-laravel-health)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3913.7k](/packages/rawilk-profile-filament-plugin)[laracraft-tech/laravel-useful-additions

A collection of useful Laravel additions!

58122.8k](/packages/laracraft-tech-laravel-useful-additions)[simplestats-io/laravel-client

Analytics for Laravel. Track visitors, registrations, and payments. Discover which channels actually drive revenue, not just traffic. Server-side, GDPR compliant, ad-blocker proof.

5019.3k](/packages/simplestats-io-laravel-client)[mradder/filament-logger

Audit logging, activity tracking, exports, alerts, and dashboards for Filament admin panels.

2210.5k](/packages/mradder-filament-logger)

PHPackages © 2026

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