© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
4 replies
bernhard

Table column searchable - how to show user which columns are searchable

In the table builder, you can make columns searchable, which is great. For example:

TextColumn::make('id'),
TextColumn::make('name')->searchable(),
TextColumn::make('title')->searchable(),
TextColumn::make('description')
TextColumn::make('id'),
TextColumn::make('name')->searchable(),
TextColumn::make('title')->searchable(),
TextColumn::make('description')


So the
name
name
and
title
title
columns are searchable, but not the
id
id
and
description
description
column.

From an end user perspective: how to know, which fields/columns are searchable and which not? When I enter for example
12
12
, without any extra knowledge / information, I would expect to get the row with the id 12 or at least with 12 in it.

Why not adding the names (labels) of the columns as a placeholder in the searchbox. Or mark the searchable columns somehow ?
Solution
Its now possible with https://github.com/filamentphp/filament/pull/8884
GitHub
Add column labels to table global search field by bernhardh · Pull ...
Changes have been thoroughly tested to not break existing functionality.
Visual changes are explained in the PR description using a screenshot/recording of before and after.

TLDR:
This PR adds th...
Add column labels to table global search field by bernhardh · Pull ...
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

How to make table searchable?
FilamentFFilament / ❓┊help
3y ago
how to show roles in user table
FilamentFFilament / ❓┊help
3y ago
how to mass show or hide toggleable table columns
FilamentFFilament / ❓┊help
7mo ago
Save Toggleable Columns to user table
FilamentFFilament / ❓┊help
5mo ago