© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•14mo ago
javalava6985

Table results missing

I have a filament table that is sorted using a tab:

public function getTabs(): array {
        return [
            'future'    => Tab::make('Planning')
                ->badge(Project::query()->where('deleted_at', null)->where('date', '>=', today())->count())
                ->modifyQueryUsing(function ($query){
                    return $query->where('deleted_at', null)->where('date', '>=', today());
                }),
            'all'     => Tab::make('Alles')
                ->badge(Project::query()->where('deleted_at', null)->count())
                ->modifyQueryUsing(function ($query){
                    return $query->where('deleted_at', null);
                }),
            'past'  => Tab::make('Historie')
                ->badge(Project::query()->where('deleted_at', null)->where('date', '<', today())->count())
                ->modifyQueryUsing(function ($query){
                    return $query->where('deleted_at', null)->where('date', '<', today());
                }),
            'canceled'  => Tab::make('Geannuleerd')->modifyQueryUsing(function ($query){
                return $query->whereNot('deleted_at', null);
            }),
        ];
    }
public function getTabs(): array {
        return [
            'future'    => Tab::make('Planning')
                ->badge(Project::query()->where('deleted_at', null)->where('date', '>=', today())->count())
                ->modifyQueryUsing(function ($query){
                    return $query->where('deleted_at', null)->where('date', '>=', today());
                }),
            'all'     => Tab::make('Alles')
                ->badge(Project::query()->where('deleted_at', null)->count())
                ->modifyQueryUsing(function ($query){
                    return $query->where('deleted_at', null);
                }),
            'past'  => Tab::make('Historie')
                ->badge(Project::query()->where('deleted_at', null)->where('date', '<', today())->count())
                ->modifyQueryUsing(function ($query){
                    return $query->where('deleted_at', null)->where('date', '<', today());
                }),
            'canceled'  => Tab::make('Geannuleerd')->modifyQueryUsing(function ($query){
                return $query->whereNot('deleted_at', null);
            }),
        ];
    }


Sometimes results show up on the 'all' tab that do not show up on the 'future' tab. When it happens it's always the first result of the second page of pagination. For example: result 25 is showing, result 26 should be the first result on the next page but it's showing result 27. I can search for result 26 and it will show up. This happens on all pagination sorts except for when i show all results. When i show all results, it shows up. Both for the 'all" tab and showing all results on pagination.

Using:
Filament 3.2.132
Laravel 11.34.2
Livewire 3.5.12
PHP 8.3.13

Edit:
The results also do not show up in the HTML. So i'm guessing it's not a css issue or similar.
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Results in a table
FilamentFFilament / ❓┊help
3y ago
Table pagination results summary position
FilamentFFilament / ❓┊help
2y ago
Getting results from the child table
FilamentFFilament / ❓┊help
3y ago