Skip to main content
You are currently viewing the documentation for Filament 2.x, which is a previous version of Filament.Looking for the current stable version? Visit the 5.x documentation.

Preparing your Livewire component

Implement the HasTable interface and use the InteractsWithTable trait:
In your Livewire component’s view, render the table:
Next, add the Eloquent query you would like the table to be based upon in the getTableQuery() method:
Finally, add any columns, filters, and actions to the Livewire component:
Visit your Livewire component in the browser, and you should see the table.

Pagination

By default, tables will be paginated. To disable this, you should override the isTablePaginationEnabled() method on your Livewire component:
You may customize the options for the paginated records per page select by overriding the getTableRecordsPerPageSelectOptions() method on your Livewire component:
By default, Livewire stores the pagination state in a page parameter of the URL query string. If you have multiple tables on the same page, this will mean that the pagination state of one table may be overwritten by the state of another table. To fix this, you may define a getTableQueryStringIdentifier() on your component, to return a unique query string identifier for that table:

Simple pagination

You may use simple pagination by overriding paginateTableQuery() method on your Livewire component:

Searching records with Laravel Scout

While Filament doesn’t provide a direct integration with Laravel Scout, you may override methods to integrate it with your Livewire component. First, you must ensure that the table search input is visible:
Now, use a whereIn() clause to filter the query for Scout results:
Scout uses this whereIn() method to retrieve results internally, so there is no performance penalty for using it.

Clickable rows

Record URLs

You may allow table rows to be completely clickable by overriding the getTableRecordUrlUsing() method on your Livewire component:
In this example, clicking on each post will take you to the posts.edit route. If you’d like to override the URL for a specific column, or instead run a Livewire action when a column is clicked, see the columns documentation.

Record actions

Alternatively, you may configure table rows to trigger an action instead of opening a URL:
In this case, if an EditAction or another action with the name edit exists on the table row, that will be called. If not, a Livewire public method with the name edit() will be called, and the selected record will be passed.

Disabling clickable rows

If you’d like to completely disable the click action for the entire row, you may override the getTableRecordActionUsing() method on your Livewire component, and return null:

Record classes

You may want to conditionally style rows based on the record data. This can be achieved by specifying a string or array of CSS classes to be applied to the row using the getTableRecordClassesUsing() method:
These classes are not automatically compiled by Tailwind CSS. If you want to apply Tailwind CSS classes that are not already used in Blade files, you should update your content configuration in tailwind.config.js to also scan for classes in your desired PHP files:
Alternatively, you may add the classes to your safelist:

Empty state

By default, an “empty state” card will be rendered when the table is empty. To customize this, you may define methods on your Livewire component:

Query string

Livewire ships with a feature to store data in the URL’s query string, to access across requests. With Filament, this allows you to store your table’s filters, sort, search and pagination state in the URL. To store the filters, sorting, and search state of your table in the query string:

Reordering records

To allow the user to reorder records using drag and drop in your table, you can use the getTableReorderColumn() method:
When making the table reorderable, a new button will be available on the table to toggle reordering. The getTableReorderColumn() method returns the name of a column to store the record order in. If you use something like spatie/eloquent-sortable with an order column such as order_column, you may return this instead:

Enabling pagination while reordering

Pagination will be disabled in reorder mode to allow you to move records between pages. It is generally bad UX to re-enable pagination while reordering, but if you are sure then you can use:

Polling content

You may poll table content so that it refreshes at a set interval, using the getTablePollingInterval() method:

Using the form builder

Internally, the table builder uses the form builder to implement filtering, actions, and bulk actions. Because of this, the form builder is already set up on your Livewire component and ready to use with your own custom forms. You may use the default form out of the box: