© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•5mo ago•
1 reply
vahnmarty

Table Widget not showing summary

What I am trying to do:

In every resource, by default, the table is showing like
Showing 1 to 10 of 37 results
Showing 1 to 10 of 37 results
. Now, using table widget in Dashboard, it's not showing.

What I did:

I tried experimenting
->paginated()
->paginated()
and none of them works.

Code:

class EnrolledSurvey extends BaseWidget
{
    use InteractsWithPageFilters;

    public function table(Table $table): Table
    {
   
        $query = Survey::where('survey_type', 'Accepted');


        return $table
            ->query($query)
            ->columns([
                
            ])
            ->headerActions([
            ->actions([
            ]);
    }
}
class EnrolledSurvey extends BaseWidget
{
    use InteractsWithPageFilters;

    public function table(Table $table): Table
    {
   
        $query = Survey::where('survey_type', 'Accepted');


        return $table
            ->query($query)
            ->columns([
                
            ])
            ->headerActions([
            ->actions([
            ]);
    }
}
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 not showing
FilamentFFilament / ❓┊help
2y ago
Pagination not showing in dashboard table widget
FilamentFFilament / ❓┊help
3y ago
Table summary
FilamentFFilament / ❓┊help
5mo ago
Table Summary Color
FilamentFFilament / ❓┊help
2y ago