© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
3 replies
bald

Table's Query Builder is not shown shown in full width

I have a resource, which has a table, and I added filter inside using the
QueryBuilder
QueryBuilder
, as follows:

// ...
->filters([
    Tables\Filters\QueryBuilder::make()
        ->constraints([
            Constraints\DateConstraint::make('start_date'),
            Constraints\DateConstraint::make('end_date'),
        ]),
    ])
// ...
->filters([
    Tables\Filters\QueryBuilder::make()
        ->constraints([
            Constraints\DateConstraint::make('start_date'),
            Constraints\DateConstraint::make('end_date'),
        ]),
    ])


The filter works. However the UI does not render correctly. As shown in the image, the
DateConstraint
DateConstraint
of "start_date" is rendered as (I think) 3 columns while it actually only need 2. Of course the same thing happens for the "end_date" constraint. I've tried to change the filter layout to Modal, Above Contenct, etc; but it all the same.

Any ideas of what's wrong here?
image.png
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 Table not Spanning Full Page Width
FilamentFFilament / ❓┊help
3y ago
Table Query Builder with Constraints
FilamentFFilament / ❓┊help
13mo ago
Getting Error in Query Builder in Table Widget
FilamentFFilament / ❓┊help
3y ago
ImageColumn not displaying in Table builder
FilamentFFilament / ❓┊help
3y ago