PHPackages                             nrml-co/nova-big-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. nrml-co/nova-big-filter

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

nrml-co/nova-big-filter
=======================

A nice looking filter menu thats always open.

1.0.5(6y ago)35310.9k↑24.7%13[4 issues](https://github.com/nrml-co/nova-big-filter/issues)[1 PRs](https://github.com/nrml-co/nova-big-filter/pulls)MITVuePHP &gt;=7.1.0

Since Mar 5Pushed 5y ago2 watchersCompare

[ Source](https://github.com/nrml-co/nova-big-filter)[ Packagist](https://packagist.org/packages/nrml-co/nova-big-filter)[ RSS](/packages/nrml-co-nova-big-filter/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)DependenciesVersions (8)Used By (0)

Laravel Nova Big Filter
-----------------------

[](#laravel-nova-big-filter)

[![Latest Version on Github](https://camo.githubusercontent.com/fb48ad49ddd3e6b568f31e84fe757640da0b237f2ac3d93f9fbd444bce03e2d5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e726d6c2d636f2f6e6f76612d6269672d66696c7465722e7376673f7374796c653d666c6174)](https://packagist.org/packages/nrml-co/nova-big-filter)[![Total Downloads](https://camo.githubusercontent.com/07a35250344da12a5e9df22ab271a80ae94cc235541861e9285288ef4ea36078/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e726d6c2d636f2f6e6f76612d6269672d66696c7465722e7376673f7374796c653d666c6174)](https://packagist.org/packages/nrml-co/nova-big-filter)

A nice looking filter menu that's always open.

[![Nova Big Filter Screenshot](https://raw.githubusercontent.com/nrml-co/nova-big-filter/master/resources/img/screenshot.png)](https://raw.githubusercontent.com/nrml-co/nova-big-filter/master/resources/img/screenshot.png)

Install
-------

[](#install)

Install the package in to a [Laravel Nova](https://nova.laravel.com) project via composer:

```
composer require nrml-co/nova-big-filter
```

Usage
-----

[](#usage)

Add the class to the card array of a resource with filters. The default 'Per Page' filter is not included. If you add the card but don't have any filters, you wont see anything. Add some filters and it will show up.

This package makes life easy by eliminating the tiresome click and scroll of the default filter. You may have to play with the order of your filters to get things looking great. For instance, Date Filters look best on the bottom.

```
use NrmlCo\NovaBigFilter\NovaBigFilter;
use App\Nova\Filters\YourFilter;
use App\Nova\Filters\YourOtherFilter;

public function filters()
{
    return [
        new YourFilter,
        new YourOtherFilter,
    ];
}

public function cards()
{
    return [
        new NovaBigFilter,
    ];
}
```

Customization
-------------

[](#customization)

Adding customization functions as needed, and by request. :)

### setTitle($title)

[](#settitletitle)

Use setTitle to change the card title. The default is 'Filter Menu'.

```
public function cards()
{
    return [
        (new NovaBigFilter)->setTitle('Big Filter'),
    ];
}
```

### setMaxHeight($height)

[](#setmaxheightheight)

Use setMaxHeight to change the max height of the filter block. The default is 350.

```
public function cards()
{
    return [
        (new NovaBigFilter)->setMaxHeight(400),
    ];
}
```

### hideFilterTitle()

[](#hidefiltertitle)

Use hideFilterTitle to hide a title of the filter block, if you don't need it.

```
public function cards()
{
    return [
        (new NovaBigFilter)->hideFilterTitle(),
    ];
}
```

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity46

Moderate usage in the ecosystem

Community16

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 86.7% 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 ~45 days

Recently: every ~52 days

Total

6

Last Release

2407d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9271b3cfd68010a197c344c65ec6de40ae6fd156b22371270ed5d1f9b3142e56?d=identicon)[edanisko](/maintainers/edanisko)

---

Top Contributors

[![edanisko](https://avatars.githubusercontent.com/u/947502?v=4)](https://github.com/edanisko "edanisko (39 commits)")[![UnsealedOne](https://avatars.githubusercontent.com/u/35104105?v=4)](https://github.com/UnsealedOne "UnsealedOne (3 commits)")[![JerrycheeMM](https://avatars.githubusercontent.com/u/88072341?v=4)](https://github.com/JerrycheeMM "JerrycheeMM (2 commits)")[![Jun-ocx](https://avatars.githubusercontent.com/u/55770199?v=4)](https://github.com/Jun-ocx "Jun-ocx (1 commits)")

---

Tags

cardsfilterslaravelnovalaravelfiltercardnova

### Embed Badge

![Health badge](/badges/nrml-co-nova-big-filter/health.svg)

```
[![Health](https://phpackages.com/badges/nrml-co-nova-big-filter/health.svg)](https://phpackages.com/packages/nrml-co-nova-big-filter)
```

###  Alternatives

[outl1ne/nova-detached-filters

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

64343.5k](/packages/outl1ne-nova-detached-filters)[optimistdigital/nova-detached-filters

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

64235.5k](/packages/optimistdigital-nova-detached-filters)[awesome-nova/filter-card

A Laravel Nova card.

25126.1k](/packages/awesome-nova-filter-card)[outl1ne/nova-input-filter

An input filter for Laravel Nova

24822.7k](/packages/outl1ne-nova-input-filter)[suenerds/nova-searchable-belongs-to-filter

Searchable Nova filter for belongsTo relationships.

29516.9k](/packages/suenerds-nova-searchable-belongs-to-filter)[awesome-nova/dependent-filter

Dependent filters for Laravel Nova

26184.1k](/packages/awesome-nova-dependent-filter)

PHPackages © 2026

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