© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
14 replies
Wannes

Infolist action on custom page

Hi there! I have a custom livewire page with a table. Now I want to have a view action which opens an infolist, but for some reason I don't get any popups.

This is my table action:
->actions([
                ViewAction::make('view')
                    ->label('Bekijken')
                    ->icon('heroicon-o-eye')
                    ->infolist(function (Infolist $infolist) {
                        return $infolist
                            ->schema([
                                TextEntry::make('lineItemable.name')->label('Naam'),
                            ]);
                    }),
            ])
->actions([
                ViewAction::make('view')
                    ->label('Bekijken')
                    ->icon('heroicon-o-eye')
                    ->infolist(function (Infolist $infolist) {
                        return $infolist
                            ->schema([
                                TextEntry::make('lineItemable.name')->label('Naam'),
                            ]);
                    }),
            ])


I use the
InteractsWithInfolists
InteractsWithInfolists
trait and have the
HasInfolists
HasInfolists
interface. This is my view:

<div>
    {{ $this->table }}

    <x-filament-actions::modals />

</div>
<div>
    {{ $this->table }}

    <x-filament-actions::modals />

</div>


Is there something I am missing?
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

Custom Infolist Entry Action
FilamentFFilament / ❓┊help
2y ago
Page refresh with Infolist Action
FilamentFFilament / ❓┊help
9mo ago
Create action on custom page
FilamentFFilament / ❓┊help
2y ago
Export action on custom page
FilamentFFilament / ❓┊help
3y ago