PHPackages                             digital-creative/nova-range-input-filter - 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. [Search &amp; Filtering](/categories/search)
4. /
5. digital-creative/nova-range-input-filter

ActiveLibrary[Search &amp; Filtering](/categories/search)

digital-creative/nova-range-input-filter
========================================

A Laravel Nova range input filter.

v1.1.0(2y ago)17222.1k—7.8%15[1 PRs](https://github.com/dcasia/nova-range-input-filter/pulls)1MITVuePHP &gt;=8.1

Since Dec 6Pushed 2y ago3 watchersCompare

[ Source](https://github.com/dcasia/nova-range-input-filter)[ Packagist](https://packagist.org/packages/digital-creative/nova-range-input-filter)[ RSS](/packages/digital-creative-nova-range-input-filter/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (6)Dependencies (1)Versions (9)Used By (1)

Nova Range Input Filter
=======================

[](#nova-range-input-filter)

[![Latest Version on Packagist](https://camo.githubusercontent.com/c51b7db541ee8169c252acabb490c32e78763a5ca261a127453a7a2d3b2a8e38/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6469676974616c2d63726561746976652f6e6f76612d72616e67652d696e7075742d66696c746572)](https://packagist.org/packages/digital-creative/nova-range-input-filter)[![Total Downloads](https://camo.githubusercontent.com/c4d4dcfbaaf605cefe9d0aaea52a4a52412818ebc813f4d5e0933f300945564a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6469676974616c2d63726561746976652f6e6f76612d72616e67652d696e7075742d66696c746572)](https://packagist.org/packages/digital-creative/nova-range-input-filter)[![License](https://camo.githubusercontent.com/78634163dd7e4155f32534573794256c9ed201f90ef663f0a5f5b1589322f7c2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6469676974616c2d63726561746976652f6e6f76612d72616e67652d696e7075742d66696c746572)](https://github.com/dcasia/nova-range-input-filter/blob/main/LICENSE)

A Laravel Nova range input filter.

  ![RangeInputFilter in Action](https://raw.githubusercontent.com/dcasia/nova-range-input-filter/main/screenshots/light.png)Installation
============

[](#installation)

You can install the package via composer:

```
composer require digital-creative/nova-range-input-filter

```

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

[](#basic-usage)

Create a filter as usual and extend the `DigitalCreative\RangeInputFilter\RangeInputFilter` class

```
use DigitalCreative\RangeInputFilter\RangeInputFilter;

class MyFilter extends RangeInputFilter {

    public function apply(NovaRequest $request, $query, $value)
    {
        $from = data_get($value, 'from');
        $to = data_get($value, 'to');
    }

}
```

and use it as usual on the filters methods within your resource class:

```
class ExampleNovaResource extends Resource {

    public function filters(NovaRequest $request): array
    {
        return [
            MyFilter::make()
        ];
    }

}
```

### Options

[](#options)

The available options are straight forward:

```
class ExampleNovaResource extends Resource {

    public function filters(NovaRequest $request): array
    {
        return [
            MyFilter::make()
                ->dividerLabel('') // control the divider label in between the inputs
                ->inputType('week') // supports any html input type
                ->placeholder('From', 'To') // control the placeholder of the inputs
                ->fromAttributes([ 'min' => 0 ]) // some inputs type like number accepts more attributes like min/max/step etc..
                ->toAttributes([ 'max' => 100 ])
        ];
    }

}
```

Due to the size limitation of the native nova filter box some input types may not look as expected, for this reason you can use [Nova Mega Filter](https://github.com/dcasia/nova-mega-filter) package instead which is a drop-in replacement for the native filter box.

⭐️ Show Your Support
--------------------

[](#️-show-your-support)

Please give a ⭐️ if this project helped you!

### Other Packages You Might Like

[](#other-packages-you-might-like)

- [Nova Dashboard](https://github.com/dcasia/nova-dashboard) - The missing dashboard for Laravel Nova!
- [Nova Welcome Card](https://github.com/dcasia/nova-welcome-card) - A configurable version of the `Help card` that comes with Nova.
- [Icon Action Toolbar](https://github.com/dcasia/icon-action-toolbar) - Replaces the default boring action menu with an inline row of icon-based actions.
- [Expandable Table Row](https://github.com/dcasia/expandable-table-row) - Provides an easy way to append extra data to each row of your resource tables.
- [Collapsible Resource Manager](https://github.com/dcasia/collapsible-resource-manager) - Provides an easy way to order and group your resources on the sidebar.
- [Resource Navigation Tab](https://github.com/dcasia/resource-navigation-tab) - Organize your resource fields into tabs.
- [Resource Navigation Link](https://github.com/dcasia/resource-navigation-link) - Create links to internal or external resources.
- [Nova Mega Filter](https://github.com/dcasia/nova-mega-filter) - Display all your filters in a card instead of a tiny dropdown!
- [Nova Pill Filter](https://github.com/dcasia/nova-pill-filter) - A Laravel Nova filter that renders into clickable pills.
- [Nova Slider Filter](https://github.com/dcasia/nova-slider-filter) - A Laravel Nova filter for picking range between a min/max value.
- [Nova Range Input Filter](https://github.com/dcasia/nova-range-input-filter) - A Laravel Nova range input filter.
- [Nova FilePond](https://github.com/dcasia/nova-filepond) - A Nova field for uploading File, Image and Video using Filepond.
- [Custom Relationship Field](https://github.com/dcasia/custom-relationship-field) - Emulate HasMany relationship without having a real relationship set between resources.
- [Column Toggler](https://github.com/dcasia/column-toggler) - A Laravel Nova package that allows you to hide/show columns in the index view.
- [Batch Edit Toolbar](https://github.com/dcasia/batch-edit-toolbar) - Allows you to update a single column of a resource all at once directly from the index page.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://raw.githubusercontent.com/dcasia/nova-range-input-filter/master/LICENSE) for more information.

###  Health Score

43

—

FairBetter than 89% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity45

Moderate usage in the ecosystem

Community22

Small or concentrated contributor base

Maturity72

Established project with proven stability

 Bus Factor1

Top contributor holds 56.5% 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 ~199 days

Recently: every ~342 days

Total

8

Last Release

1005d ago

Major Versions

v0.1.5 → v1.02022-09-28

PHP version history (2 changes)0.1.0PHP &gt;=7.1.0

v1.1.0PHP &gt;=8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/e4a85b779289ce63c67af70941a545331f3e362a4b58330495cc7e77250e5401?d=identicon)[milewski](/maintainers/milewski)

![](https://www.gravatar.com/avatar/ca48016d492a45356497d3bff22f409c82ee9ceb4e4985a8c6439935e2c0feb0?d=identicon)[littlemiaor](/maintainers/littlemiaor)

---

Top Contributors

[![milewski](https://avatars.githubusercontent.com/u/2874967?v=4)](https://github.com/milewski "milewski (13 commits)")[![littlemiaor](https://avatars.githubusercontent.com/u/2921366?v=4)](https://github.com/littlemiaor "littlemiaor (5 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![vesper8](https://avatars.githubusercontent.com/u/816028?v=4)](https://github.com/vesper8 "vesper8 (1 commits)")[![yousan](https://avatars.githubusercontent.com/u/561613?v=4)](https://github.com/yousan "yousan (1 commits)")

---

Tags

filterlaravelnovarange-filterlaravelfilterinputrangenova

### Embed Badge

![Health badge](/badges/digital-creative-nova-range-input-filter/health.svg)

```
[![Health](https://phpackages.com/badges/digital-creative-nova-range-input-filter/health.svg)](https://phpackages.com/packages/digital-creative-nova-range-input-filter)
```

###  Alternatives

[outl1ne/nova-input-filter

An input filter for Laravel Nova

241.0M](/packages/outl1ne-nova-input-filter)[optimistdigital/nova-input-filter

An input filter for Laravel Nova

24576.2k2](/packages/optimistdigital-nova-input-filter)[outl1ne/nova-multiselect-filter

Multiselect filter for Laravel Nova.

45902.0k5](/packages/outl1ne-nova-multiselect-filter)[optimistdigital/nova-multiselect-filter

Multiselect filter for Laravel Nova.

45316.3k](/packages/optimistdigital-nova-multiselect-filter)[pos-lifestyle/laravel-nova-date-range-filter

A Laravel Nova date range filter.

16181.8k](/packages/pos-lifestyle-laravel-nova-date-range-filter)[outl1ne/nova-detached-filters

This Laravel Nova package allows you to detach filters from the filter dropdown

64414.1k](/packages/outl1ne-nova-detached-filters)

PHPackages © 2026

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