PHPackages                             condor-bird/nova-global-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. [Admin Panels](/categories/admin)
4. /
5. condor-bird/nova-global-filter

ActiveLibrary[Admin Panels](/categories/admin)

condor-bird/nova-global-filter
==============================

This package allows you to broadcast any of your existing Laravel Nova filters to metrics or custom cards.

v1.0.0(1y ago)00MITVuePHP &gt;=7.1.0

Since Oct 25Pushed 1y agoCompare

[ Source](https://github.com/condor-bird/nova-global-filter)[ Packagist](https://packagist.org/packages/condor-bird/nova-global-filter)[ RSS](/packages/condor-bird-nova-global-filter/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

Nova Global Filter
==================

[](#nova-global-filter)

This package allows you to emit any of your existing Laravel Nova filters to metrics or custom cards.

[![screenshot](resources/gifs/nova-global-filter.gif)](resources/gifs/nova-global-filter.gif)

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

[](#installation)

You can install the package in to a `Laravel` app that uses [Nova](https://nova.laravel.com) via composer:

```
composer require nemrutco/nova-global-filter
```

Usage
-----

[](#usage)

In this example, we are registering few `Metric Cards` and the `Global Filter` with a `Date` filter as:

```
...
use Nemrutco\NovaGlobalFilter\NovaGlobalFilter;
use App\Nova\Filters\Date;

class Store extends Resource
{
  ...
  public function cards(Request $request)
  {
    return [
      new TotalSales // Value Metric

      new Orders, // Trend Metric

      new MostSoldProduct, // Partition Metric

      // NovaGlobalFilter
      new NovaGlobalFilter([
        new Date, // Date Filter
      ]),
    ];
  }
  ...
}
```

And now `metric cards` or any `other cards` optimized to listen `GlobalFilter` can be filtered by using `GlobalFilterable` trait and calling `$this->globalFiltered($model,$filters)` method.

`globalFiltered($model, $filters = [])` method expect `$model` and `$filters` parameters:

```
use Nemrutco\NovaGlobalFilter\GlobalFilterable;
use App\Nova\Filters\Date;
...

class UsersPerDay extends Trend
{
use GlobalFilterable;

  public function calculate(NovaRequest $request)
  {
    // Filter your model with existing filters
    $model = $this->globalFiltered($request, Store::class,[
      Date::class // DateFilter
    ]);

    // Do your thing with the filtered $model
    return $this->countByDays($request, $model);

  }
...
}
```

And that's it. Cards will be filtered based on passed filter value.

If you want to apply default value on initial request make sure you set default value in your filter as

```
...
// set default date
public function default()
{
    return Carbon::now();
}
...
```

To change layout from `grid` to `inline`

*by default it's set to `grid`*

[![screenshot](resources/gifs/inline-reset-view.png)](resources/gifs/inline-reset-view.png)

```
...
(new NovaGlobalFilter([
    // Filters
]))->inline(),
...
```

To enable `Reset` button

```
...
(new NovaGlobalFilter([
    // Filters
]))->resettable(),
...
```

To add multiple `Global Filter`s

```
...
(new NovaGlobalFilter([
    // Filters
]))->inline()->resettable(),

(new NovaGlobalFilter([
    // Filters
]))->onlyOnDetail(),
...
```

To set `Title` of Global Filter

```
...
(new NovaGlobalFilter([
    // Filters
]))->title('Example Title'),
...
```

To listen `Global Filter` on any `Custom Card`s:

```
...
created() {
  Nova.$on("global-filter-changed", filter => {
    // Do your thing with the changed filter
    console.log(filter);
  });
},
...
```

To request all filter states from `Global Filter` on any `Custom Card`s:

```
...
  Nova.$emit("global-filter-request");
...
```

To request spesific filters state from `Global Filter` on any `Custom Card`s:

```
...
created() {
  Nova.$emit("global-filter-request", [
      "App\\Nova\\Filters\\DateFilter",
      "App\\Nova\\Filters\\CountryFilter"
  ]);
},
...
```

To receive filters state from `Global Filter` on any `Custom Card`s:

```
...
created() {
  Nova.$on("global-filter-response", filters => {
    // Do your thing with the filters
    console.log(filters);
  });
},
...
```

Good to know
------------

[](#good-to-know)

- Basic functionality of this package is that it listens all the asigned filters. Once a value of a filter is changed, it emits as `Nova.$on('global-filter-changed', [changed filter and value])`. So any card that listens to this event will recieve the filter and its value.
- This package overwrites Nova's default `Metric Card`s to allow them to listen `"global-filter-changed"` event. Make sure there are no any conflicts with other pacages.
- This package currently does not support Index view filters to be synchronized. So filters in `Global Filter` will not trigger update at the filters in `Filter Menu` of your Index view.
- `Reset` button simply reloads the current page. There is nothing fancy going on behind the scenes.
- If you are willing to support this package, it will be great to get your issues, PRs and thoughts on [Github](https://github.com/nemrutco/). And dont forget to `Star` the package.

Cheers

Made with ❤️ for open source

- [Nemrut Creative Studio](https://nemrut.co)
- [Muzaffer Dede](https://github.com/muzafferdede)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity33

Early-stage or recently created project

 Bus Factor1

Top contributor holds 68% 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

Unknown

Total

1

Last Release

561d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3e6c24f4cd42aabb517ee92c8a30a1b54f81fd749fc3b9a5b232f6c29d31f474?d=identicon)[condor](/maintainers/condor)

---

Top Contributors

[![MuzafferDede](https://avatars.githubusercontent.com/u/5906125?v=4)](https://github.com/MuzafferDede "MuzafferDede (34 commits)")[![ali-raza-saleem](https://avatars.githubusercontent.com/u/88083032?v=4)](https://github.com/ali-raza-saleem "ali-raza-saleem (7 commits)")[![condor-bird](https://avatars.githubusercontent.com/u/14821572?v=4)](https://github.com/condor-bird "condor-bird (5 commits)")[![davide-granello](https://avatars.githubusercontent.com/u/82588489?v=4)](https://github.com/davide-granello "davide-granello (2 commits)")[![chrisvasey](https://avatars.githubusercontent.com/u/7483460?v=4)](https://github.com/chrisvasey "chrisvasey (1 commits)")[![cord](https://avatars.githubusercontent.com/u/158588?v=4)](https://github.com/cord "cord (1 commits)")

---

Tags

laravelMetricsdashboardcardfiltersnova

### Embed Badge

![Health badge](/badges/condor-bird-nova-global-filter/health.svg)

```
[![Health](https://phpackages.com/badges/condor-bird-nova-global-filter/health.svg)](https://phpackages.com/packages/condor-bird-nova-global-filter)
```

###  Alternatives

[digital-creative/nova-dashboard

The missing dashboard for nova.

7169.3k1](/packages/digital-creative-nova-dashboard)[jubeki/nova-card-linkable

A Linkeable Card for the Laravel Nova Dashboard.

19246.1k](/packages/jubeki-nova-card-linkable)[khalin/nova-link-field

A Laravel Nova Link field.

31562.2k2](/packages/khalin-nova-link-field)

PHPackages © 2026

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