marcoraddatz / filter-card
A Laravel Nova card.
Package info
github.com/marcoraddatz/filter-card
Language:JavaScript
pkg:composer/marcoraddatz/filter-card
v2.0.1
2024-03-14 12:24 UTC
Requires
- php: >=7.1.0
- laravel/nova: ^4.0
This package is auto-updated.
Last update: 2026-02-14 16:48:42 UTC
README
This fork implements support for Nova 4. The work was originally done by ali-raza-saleem, but the PR did not get merged.
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require marcoraddatz/filter-card
Usage
You need to add card to resource with specified filter.
use AwesomeNova\Cards\FilterCard; use App\Nova\Filters\StateFilter; public function filters() { return [ new StateFilter(), ]; } public function cards() { return [ // Other cards..., new FilterCard(new StateFilter()), ]; }
