© 2026 Hedgehog Software, LLC

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

Table seems not display correctly (like missing css)

Hi,

I try to use Filament component outside of the filament-app
I use Livewire to draw filament-table and display in blade file

In tailwind config I already put the vendor blade inside and run npm production , clear cache,view,config but the table still show wried look.
and some function not show up like bulk action button, bulk select all not selecting all record.
per page is selected to 5 but still showing 6.
please help
'./vendor/filament/**/*.blade.php',
'./app/Filament/**/*.php',
'./vendor/filament/**/*.blade.php',
'./app/Filament/**/*.php',



Livewire/table
public function table(Table $table): Table
{
    return $table
        ->query(ModelTable::query())
        ->columns([
            TextColumn::make('date'),
        ]);
}
public function render()
{
    return view('livewire.view);
}
public function table(Table $table): Table
{
    return $table
        ->query(ModelTable::query())
        ->columns([
            TextColumn::make('date'),
        ]);
}
public function render()
{
    return view('livewire.view);
}

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


blade file I include
@livewire('List')
@livewire('List')
Screenshot_2024-06-13_at_16.48.55.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

CSS not loading correctly
FilamentFFilament / ❓┊help
2y ago
Display the table correctly on Mobile and Desktop
FilamentFFilament / ❓┊help
5mo ago
mohamedsabil83 filament tinyeditor css not matching display
FilamentFFilament / ❓┊help
12mo ago
table does not display all records
FilamentFFilament / ❓┊help
3y ago