awesome-nova / filter-card
A Laravel Nova card.
v1.0.2
2019-08-05 13:53 UTC
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2026-02-06 04:21:37 UTC
README
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require awesome-nova/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()), ]; }
