© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
1 reply
megseegmiller

Empty state on Dashboard Table Widget

Hello! I am trying to set emptyState properties on a table widget used on the dashboard, but the override values are not showing. The heading value is showing.

I am fairly new to Livewire and Filament.

class OpenPendingMlsTickets extends BaseWidget
{
    protected static ?string $heading = 'Open/Pending MLS Tickets';

    protected $defaultPaginationPageOption = 5;

    protected ?string $emptyStateDescription = 'No open or pending tickets';

    protected ?string $emptyStateIcon = 'heroicon-o-check-circle';

    protected function getTableQuery(): Builder
    {
        return UpdateRequest::where('status','<>','Closed')->with(['model.spec']);
    }

    protected function getTableColumns(): array
    {
....
class OpenPendingMlsTickets extends BaseWidget
{
    protected static ?string $heading = 'Open/Pending MLS Tickets';

    protected $defaultPaginationPageOption = 5;

    protected ?string $emptyStateDescription = 'No open or pending tickets';

    protected ?string $emptyStateIcon = 'heroicon-o-check-circle';

    protected function getTableQuery(): Builder
    {
        return UpdateRequest::where('status','<>','Closed')->with(['model.spec']);
    }

    protected function getTableColumns(): array
    {
....
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

Avoid showing table widget on main dashboard
FilamentFFilament / ❓┊help
2y ago
costom table widget query is empty
FilamentFFilament / ❓┊help
3y ago
Hide widget on dashboard
FilamentFFilament / ❓┊help
3y ago