© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•12mo ago•
3 replies
kabu

Table responsive, using Table Builder Layout

Its possible to make two layouts for sm and md ? for md screens i want this simple layout: public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('id')
->label(('id'))
->searchable()
->sortable(),
Tables\Columns\TextColumn::make('name')
->label(
('name'))
->searchable()
->sortable(),
Tables\Columns\TextColumn::make('name')
->label(('name'))
->description('')
->searchable()
->sortable(),
Tables\Columns\TextColumn::make('email')
->label(
('email'))
->searchable()
->sortable(),
Tables\Columns\TextColumn::make('phone')
->label(('phone'))
->searchable()
->sortable(),
Tables\Columns\TextColumn::make('phone2')
->label(
('second_phone'))
->searchable()
->visibleFrom('md')//nomes es mostra en pantalles grans
->sortable(),
Tables\Columns\TextColumn::make('clientCategory.name')
->label(__('category'))
->sortable()
->visibleFrom('md')
->toggleable(),
])
And for sm i want to stack name email and phone.
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Responsive Table Layout
FilamentFFilament / ❓┊help
2mo ago
Undefined variable $table while using table builder
FilamentFFilament / ❓┊help
3y ago
Table Builder
FilamentFFilament / ❓┊help
2y ago
Table Builder
FilamentFFilament / ❓┊help
3y ago