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',



Livewire/table
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>


blade file I include
@livewire('List')
Screenshot_2024-06-13_at_16.48.55.png
Was this page helpful?