lara-zeus/progress

This is my package progress

Maintainers

Package info

github.com/lara-zeus/progress

Language:Blade

pkg:composer/lara-zeus/progress

Transparency log

Fund package maintenance!

LaraZeus

Statistics

Installs: 7 550

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

3.0.1 2026-04-24 14:23 UTC

README

This is a fork from filaprogress, fully maintained and up to date.

The Progress Management Package for FilamentPHP provides a flexible and easy-to-use solution for tracking and visualizing progress within Filament admin panels.

Latest Version on Packagist Tests Code Style Total Downloads Total Stars

Versions

Plugin Version Filament Version
v1.x v2.x
v2.x v3.x
v3.x v3.x

Support Filament

filament-logo

Installation

You can install the package via composer:

composer require lara-zeus/progress

Optionally, you can publish the views using

php artisan vendor:publish --tag="progress-views"

Usage

// For infolist
use LaraZeus\Progress\Infolists\Components\CircleProgressEntry;
use LaraZeus\Progress\Infolists\Components\ProgressBarEntry;

return $infolist
    ->schema([
        CircleProgressEntry::make('circle')
            ->getStateUsing(function ($record) {
                $total = $record->items()->count();
                $progress = $record->countPaidItems();
                return [
                    'total' => $total,
                    'progress' => $progress,
                ];
            })
            ->hideProgressValue(),
        ProgressBarEntry::make('bar')
            ->getStateUsing(function ($record) {
                $total = $record->items()->count();
                $progress = $record->countPaidItems();
                return [
                    'total' => $total,
                    'progress' => $progress,
                ];
            })
            ->hideProgressValue(),
// For table
use LaraZeus\Progress\Tables\Columns\CircleProgress;
use LaraZeus\Progress\Tables\Columns\ProgressBar;

return $table
    ->columns([
        CircleProgress::make('circle')
            ->getStateUsing(function ($record) {
                $total = $record->items()->count();
                $progress = $record->countPaidItems();
                return [
                    'total' => $total,
                    'progress' => $progress,
                ];
            })
            ->hideProgressValue(),
        ProgressBar::make('bar')
            ->getStateUsing(function ($record) {
                $total = $record->items()->count();
                $progress = $record->countPaidItems();
                return [
                    'total' => $total,
                    'progress' => $progress,
                ];
            })
            ->hideProgressValue(),

Demo

Visit our demo site: https://translatable.larazeus.com/admin/books

Full Documentation

Visit our website to get the complete documentation: https://larazeus.com/docs/progress

Testing

composer test

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.