F
Filament3y ago
HL

Action buttons dissapeared

Hello! Has anyone encountered this before? None of my table actions show up anymore on local server. I'm using the same filament version (2.17.10) as on the live server, there all the the edit buttons show up at the end of each row.
->actions([
EditAction::make(),
])
->actions([
EditAction::make(),
])
->actions([Action::make('edit')
->url(fn (Blog $record): string => '/admin/accounts/' . $record->id . '/edit')
->openUrlInNewTab(),
])
->actions([Action::make('edit')
->url(fn (Blog $record): string => '/admin/accounts/' . $record->id . '/edit')
->openUrlInNewTab(),
])
Neither of these show up anything, on none of my tables. (no I cannot scroll to the right) Also a weird thing is happening with the text at the bottom left showing record numbers, might be related to this
3 Replies
Dan Harrin
Dan Harrin3y ago
clear view cache
Dennis Koch
Dennis Koch3y ago
Run php artisan filament:upgrade as stated in the docs
HL
HLOP3y ago
Thank you guys!

Did you find this page helpful?