© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•16mo ago•
5 replies
Kenneth

Split table actions

I would like to split some of my table actions to the front and leave the rest at the end of the table.

$table->actions([
    // FIXME: ActionsPosition::BeforeCells
    LoginAction::run(),
    
    // FIXME: ActionsPosition::AfterCells
    EditAction::make()
        ->label(__('table_fields.actions.edit'))
        ->label('')
        ->tooltip(__('table_fields.actions.edit'))
        ->size('lg')
        ->icon('heroicon-o-pencil-square'),

    DeleteAction::make()
        ->label('')
        ->tooltip(__('table_fields.actions.delete'))
        ->size('lg')
        ->icon('heroicon-o-trash'),
]);
$table->actions([
    // FIXME: ActionsPosition::BeforeCells
    LoginAction::run(),
    
    // FIXME: ActionsPosition::AfterCells
    EditAction::make()
        ->label(__('table_fields.actions.edit'))
        ->label('')
        ->tooltip(__('table_fields.actions.edit'))
        ->size('lg')
        ->icon('heroicon-o-pencil-square'),

    DeleteAction::make()
        ->label('')
        ->tooltip(__('table_fields.actions.delete'))
        ->size('lg')
        ->icon('heroicon-o-trash'),
]);


I asked ChatGPT (for once) if it is possible and he came with a solution that seems to be removed in v3 (
Filament\Tables\Actions\Position
Filament\Tables\Actions\Position
has moved to
Filament\Tables\Enums\ActionsPosition
Filament\Tables\Enums\ActionsPosition
)

Perhaps it is not possible what I am trying to do, but thought I'd ask for help before giving up 🫡

My apologies if it is a real simple fix and I should've read better
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

Table actions on separate row - without split?
FilamentFFilament / ❓┊help
3y ago
Split in table
FilamentFFilament / ❓┊help
17mo ago
Table Split seems broken?
FilamentFFilament / ❓┊help
16mo ago
Image in split table
FilamentFFilament / ❓┊help
3y ago