Download the PHP package workup/nova-detached-filters without Composer
On this page you can find all versions of the php package workup/nova-detached-filters. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package nova-detached-filters
Nova Detached Filters
This Laravel Nova package allows you to place filters in Nova cards detached from the filter dropdown (forked from optimistdigital).
Features
- Saving filter state
- Reset all and single filters
- Customizable
- Change width of individual filter
- Create columns for stacked filters
Screenshots
Installation
Install the package in a Laravel Nova project via Composer:
Usage
Pass the filters you wish to detach from the filter menu and show on a card to NovaDetachedFilters
class.
HasDetachedFilters
If you only wish to show some filters on DetachedFilters
card, you must use HasDetachedFilters
trait.
Customization
Widths
You can define the width of the filter using withMeta()
.
To see available width options, check out Tailwind width classes
Define the width of the card if you wish to have multiple filter cards side-by-side.
Width classes should be passed without w-
in front of it.
Resetting filter values
If you have bigger filters that take longer to clear manually, you can define withReset
in filters metadata, that will render a button to easily clear the filters value without affecting other filters.
If you want to clear all filters, you can call withReset()
on NovaDetachedFilters
class. This will render a button on the top-left corner that will clear all filter values.
Storing filter state
When you are working with multiple resources and large group of filters, assigning them every time you navigate is a hassle.
You can call persistFilters()
function on NovaDetachedFilters
that will render a lock button top-right corner of the card.
Upon clicking the button, the lock will turn green stating that current filters are saved to localStorage
.
Argument | Default | Description |
---|---|---|
persitFilters | true |
Defines whether persist filters button should be shown. |
isPersistingDefault | false |
Optionally define whether filters should be persisted by default |
Collapsing card
If you want to allow collapsing filter card you can call withToggle()
onNovaDetachedFilters
.
By default, this is false
.
Columns
When working with large boolean filters or pill filters that are the height of multiple regular filters, you can wrap filters inside DetachedFiltersColumn
to easily wrap them in columns.
DetachedFilterColumn
class takes two arguments $filters
and $width
.
Width of the column will default to w-auto
if not passed.
Example of this can be seen in Screenshots section
Credits
License
Nova Detached Filters is open-sourced software licensed under the MIT license.