lara-zeus / progress
This is my package progress
Fund package maintenance!
3.0.1
2026-04-24 14:23 UTC
Requires
- php: ^8.2
- filament/filament: ^5.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.24
- nunomaduro/collision: ^8.6
- nunomaduro/phpinsights: ^2.8
- orchestra/testbench: ^10.0
- pestphp/pest: ^4.0
- pestphp/pest-plugin-arch: ^4.0
- pestphp/pest-plugin-laravel: ^4.0
- pestphp/pest-plugin-livewire: ^4.1
- phpstan/extension-installer: ^1.4
- phpstan/phpstan-phpunit: ^2.0
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.
Support Filament
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.