© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
11 replies
nowak

How to increase SelectColumn width?

I have this SelectColumn in my Resource:
SelectColumn::make('courier_id')
  ->label('Courier')
  ->options(User::couriers()->pluck('name', 'id')),
SelectColumn::make('courier_id')
  ->label('Courier')
  ->options(User::couriers()->pluck('name', 'id')),

But the size of the select column is incredibly small. How can I make the SelectColumn wider so that it shows the text of the selected option?
Solution
SelectColumn::make('courier_id')
->extraAttributes(['style' => 'min-width:200px'])
  ->label('Courier')
  ->options(User::couriers()->pluck('name', 'id')),
SelectColumn::make('courier_id')
->extraAttributes(['style' => 'min-width:200px'])
  ->label('Courier')
  ->options(User::couriers()->pluck('name', 'id')),
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

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

How to increase SelectFilter's dropdown width?
FilamentFFilament / ❓┊help
17mo ago
How to increase table max width layout?
FilamentFFilament / ❓┊help
3y ago
How to increase Register Page White box width?
FilamentFFilament / ❓┊help
3y ago
How to registerAction on table selectColumn ?
FilamentFFilament / ❓┊help
2y ago