Table with Complex Filters and Comma Separated Filter

Filament 4

Demonstrates multiple filter types including comma-separated text inputs and dropdowns, plus their layout configuration.

FilamentExamples ThumbBase (14)

Get the Source Code:

How it works

The whole filter logic is in the ProductsTable class filters() method.

The layout option FiltersLayout::AboveContent is added to show filters above the table.

The filtersFormColumns() method is added to show filters in a grid.

For searching code and name, the form is used with a TextInput. The query for this search is custom.

Before making a query, the explode() PHP function is used so that a comma can separate search values, and the array_map() function with trim is used to remove empty values.

Here is the code of how the query looks like for the code search (for name, it's the same, just different variable):

->query(function ($query, array $data) {
// ...
The FULL tutorial is available after the purchase: in the Readme file of the official repository you would get invited to.
Get the Source Code: All 152 Premium Examples for $99