© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•6mo ago•
1 reply
chokies14

View action modal not showing when using table widget.

public function table(Table $table): Table
{
return $table
->query(
auth()->user()->offers()->getQuery()
)
->columns([
TextColumn::make('name'),
TextColumn::make('frequency'),
TextColumn::make('interval'),
])
->paginated([10])
->defaultPaginationPageOption(20)
->actions([
Tables\Actions\ViewAction::make()
->modalHeading('Venue Details')
->modalButton('Close')
->modalWidth('lg')
->form([
TextInput::make('name')
->label('Venue Name')
->disabled(),
Textarea::make('description')
->label('Description')
->disabled()
->columnSpanFull(),
]),
]);
}
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

Widget Action not opening modal
FilamentFFilament / ❓┊help
3w ago
table action not showing
FilamentFFilament / ❓┊help
12mo ago
Action modal is not showing
FilamentFFilament / ❓┊help
2y ago
Table Widget not showing summary
FilamentFFilament / ❓┊help
5mo ago