Skip to content

ali-raza-saleem/filter-card

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Nova Filter Card Package

Latest Version on Github Total Downloads Become a Patron!

  1. Installation
  2. Usage

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()),
    ];
}

About

Index filtering card.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Vue 57.4%
  • PHP 36.0%
  • JavaScript 6.6%