PHPackages                             marceloanjosdev/filament-progress-bar - 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. marceloanjosdev/filament-progress-bar

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

marceloanjosdev/filament-progress-bar
=====================================

A simple and easy to user Progress Bar

v0.1.0(5mo ago)01[2 PRs](https://github.com/marceloanjosdev/filament-progress-bar/pulls)MITPHPPHP ^8.4CI passing

Since Jan 20Pushed 2mo agoCompare

[ Source](https://github.com/marceloanjosdev/filament-progress-bar)[ Packagist](https://packagist.org/packages/marceloanjosdev/filament-progress-bar)[ Docs](https://github.com/marceloanjosdev/filament-progress-bar)[ GitHub Sponsors](https://github.com/marceloanjosdev)[ RSS](/packages/marceloanjosdev-filament-progress-bar/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (12)Versions (5)Used By (0)

Filament Progress Bar
=====================

[](#filament-progress-bar)

[![Latest Version on Packagist](https://camo.githubusercontent.com/07f2a50ca499eee34dea17ea38124b32efbf357d7872ad69df7264b2653aa5c8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d617263656c6f616e6a6f736465762f66696c616d656e742d70726f67726573732d6261722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/marceloanjosdev/filament-progress-bar)[![GitHub Tests Action Status](https://camo.githubusercontent.com/4c6477703be7154fbc84dd1a7cbe5ef6a61c5d9f188c31d8012434ebf4ae4a34/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d617263656c6f616e6a6f736465762f66696c616d656e742d70726f67726573732d6261722f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/marceloanjosdev/filament-progress-bar/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/a000225796360f7bcb87a7f259bfe77f0d5839a255ae35dddb784fce9fd64c7a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d617263656c6f616e6a6f736465762f66696c616d656e742d70726f67726573732d6261722f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/marceloanjosdev/filament-progress-bar/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/1581c15b2633688bd78a01efe9be9b62ee80d27b5c1fe869c2de3dc042327128/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d617263656c6f616e6a6f736465762f66696c616d656e742d70726f67726573732d6261722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/marceloanjosdev/filament-progress-bar)

A simple, global and non-intrusive **progress bar system for Filament**.

This package allows you to track long-running processes (jobs, imports, exports, background tasks) and display their progress **globally in the Filament admin panel**, without wiring Livewire components or custom widgets per page.

It is designed to be:

- **Simple** (explicit API: init → update → complete)
- **Safe for queued jobs**
- **Cache-based** (Redis optional, not required)
- **Filament-native** (top bar overlay, polling handled automatically)

---

Features
--------

[](#features)

- Global progress bar overlay in Filament
- Multiple simultaneous progress bars
- Determinate and indeterminate progress
- Auto-polling only when progress bars are active
- Safe default behaviour for queued jobs
- No Redis requirement (uses Laravel cache)
- Redis-ready if you want it later

---

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

[](#installation)

Install the package via Composer:

```
composer require marceloanjosdev/filament-progress-bar
```

Publish the configuration file:

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

No migrations are required.

---

Configuration
-------------

[](#configuration)

This is the default configuration file:

```
return [
    'cache_store' => null,

    'key_prefix' => 'filament-progress-bar',

    'ttl_seconds' => 3600,

    'display' => [
        /*
         | Available options:
         | - 'percent'  → 75%
         | - 'total'    → 75/100
         | - 'both'     → 75/100 · 75%
         */
        'meta' => 'both',
    ],

    'polling' => [
        'enabled' => true,

        // When there are no bars
        'idle_interval_ms' => 5000,

        // When there is at least one bar
        'active_interval_ms' => 1000,

        // Route & middleware for the internal endpoint used by the Filament UI
        'route' => '/filament-progress-bar/progress',
        'middleware' => ['web', 'auth'],
    ],
];
```

---

Usage
-----

[](#usage)

```
   app(ProgressManager::class)->init(
       key: 'progress:one',
       totalRecords: 100,
       autoComplete: true,
       label: 'Import Clients'
    );

    app(ProgressManager::class)->update('progress:one');

    app(ProgressManager::class)->complete('progress:one');
```

---

Testing
-------

[](#testing)

```
composer test
```

---

License
-------

[](#license)

MIT License.

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance80

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

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

163d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/971094?v=4)[Marcelo Anjos](/maintainers/marceloanjosdev)[@marceloanjosdev](https://github.com/marceloanjosdev)

---

Top Contributors

[![marceloanjosdev](https://avatars.githubusercontent.com/u/971094?v=4)](https://github.com/marceloanjosdev "marceloanjosdev (8 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")

---

Tags

laravelfilament-progress-barmarceloanjosdev

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/marceloanjosdev-filament-progress-bar/health.svg)

```
[![Health](https://phpackages.com/badges/marceloanjosdev-filament-progress-bar/health.svg)](https://phpackages.com/packages/marceloanjosdev-filament-progress-bar)
```

###  Alternatives

[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

94135.4k5](/packages/marcelweidum-filament-expiration-notice)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[stephenjude/filament-debugger

About

104162.2k2](/packages/stephenjude-filament-debugger)

PHPackages © 2026

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