PHPackages                             flatroy/nova-progressbar-field - 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. flatroy/nova-progressbar-field

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

flatroy/nova-progressbar-field
==============================

A Laravel Nova progress bar field.

0.0.6(3y ago)867.8k↓22.4%3[2 issues](https://github.com/Flatroy/nova-progressbar-field/issues)3MITVuePHP ^7.4|^8.0

Since Apr 20Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Flatroy/nova-progressbar-field)[ Packagist](https://packagist.org/packages/flatroy/nova-progressbar-field)[ RSS](/packages/flatroy-nova-progressbar-field/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)DependenciesVersions (6)Used By (3)

Nova ProgressBar Field
======================

[](#nova-progressbar-field)

This package allows you to add progressbar fields to your resources and dashboards in [Nova](https://nova.laravel.com).

It basically takes a field with a decimal value between 0 and 1 and shows it as a percentage progress bar.

To edit a field, we recommend using the standard Number (\\Laravel\\Nova\\Fields\\Number) field.

[![index example](https://github.com/flatroy/nova-progressbar-field/raw/main/img/screenshot-index.jpg)](https://github.com/flatroy/nova-progressbar-field/blob/main/img/screenshot-index.jpg)

[![detail example](https://github.com/flatroy/nova-progressbar-field/raw/main/img/screenshot-detail.jpg)](https://github.com/flatroy/nova-progressbar-field/blob/main/img/screenshot-detail.jpg)

#### DISCLAIMER:

[](#disclaimer)

This package is still work in progress. Feel free to help improve it.

[Original Package](https://packagist.org/packages/signifly/nova-progressbar-field)

- [Requirements](#requirements)
- [Installation](#installation)
- [Basic Usage](#basic-usage)
- [Advanced Options](#advanced-options)

---

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

[](#requirements)

- [Laravel v9.0.\*](https://laravel.com/docs/9.0)
- [Laravel Nova v4.\*](https://nova.laravel.com/docs/4.0/)

---

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

[](#installation)

Just run:

```
composer require flatroy/nova-progressbar-field
```

After this the setup will be complete, you can use the components listed here.

---

Basic Usage
-----------

[](#basic-usage)

```
// in App\Nova\User
...
use Flatroy\FieldProgressbar\FieldProgressbar;
use Laravel\Nova\Fields\Number;
...

/**
 * Get the fields displayed by the resource.
 *
 * @param \Laravel\Nova\Http\Requests\NovaRequest $request
 * @return array
 */
public function fields(NovaRequest $request)
{
    return [
        Number::make(__('Score'), 'score')
            ->min(0.01)
            ->max(1)
            ->step(0.01)
            ->onlyOnForms(),

        FieldProgressbar::make(__('Score'), 'score')
            ->sortable(),
    ];
}
```

---

Advanced Options
----------------

[](#advanced-options)

### Custom color

[](#custom-color)

```
public function cards(NovaRequest $request)
{
    return [
        FieldProgressbar::make('Awesomeness')
            ->options([
                'color' => '#FFEA82',
            ]),
    ];
}
```

### Animate Bar Color A -&gt; B

[](#animate-bar-color-a---b)

```
public function cards(NovaRequest $request)
{
    return [
        FieldProgressbar::make('Awesomeness')
            ->options([
                'fromColor' => '#FFEA82',
                'toColor' => '#40BF55',
                'animateColor' => true,
            ]),
    ];
}
```

### Custom text and hide field label

[](#custom-text-and-hide-field-label)

```
public function cards(NovaRequest $request)
{
    return [
        FieldProgressbar::make('Awesomeness')
                ->hideLabel()
                ->subtitleInDetail('custom subtitle'),
    ];
}
```

### Custom width (small, medium or large)

[](#custom-width-small-medium-or-large)

```
public function cards(NovaRequest $request)
{
    return [
        FieldProgressbar::make('Awesomeness')
            ->options([
                'width' => 'medium',
            ]),
    ];
}
```

Feel free to come with suggestions for improvements.

Packages based on this package: [nova-progressbar-field](https://github.com/signifly/nova-progressbar-field) by [Signifly](https://github.com/signifly)

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity38

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity47

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

Every ~58 days

Total

5

Last Release

1254d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8f1bac967b6f9e9da14916fd2bdf4b2d425f7d29c325eb1ebbe6a7812a5a233b?d=identicon)[Flatroy](/maintainers/Flatroy)

---

Top Contributors

[![Flatroy](https://avatars.githubusercontent.com/u/4980165?v=4)](https://github.com/Flatroy "Flatroy (8 commits)")[![joni-hrsignal](https://avatars.githubusercontent.com/u/133009209?v=4)](https://github.com/joni-hrsignal "joni-hrsignal (1 commits)")[![Muetze42](https://avatars.githubusercontent.com/u/26193232?v=4)](https://github.com/Muetze42 "Muetze42 (1 commits)")

---

Tags

laravellaravel-novanovaprogress-barlaravelfieldsprogressbarprogressnova

### Embed Badge

![Health badge](/badges/flatroy-nova-progressbar-field/health.svg)

```
[![Health](https://phpackages.com/badges/flatroy-nova-progressbar-field/health.svg)](https://phpackages.com/packages/flatroy-nova-progressbar-field)
```

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[inspheric/nova-defaultable

Default values for Nova fields when creating resources and running resource actions.

51174.8k1](/packages/inspheric-nova-defaultable)[murdercode/nova4-tinymce-editor

Boost your Laravel Nova with the TinyMCE editor.

17165.2k](/packages/murdercode-nova4-tinymce-editor)[tapp/filament-progress-bar-column

Add beautiful, color-coded progress bars to your Filament table columns. Perfect for inventory, tasks, storage, and any progress metrics without writing custom views.

124.5k](/packages/tapp-filament-progress-bar-column)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11229.2k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

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