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')
No description
2 Replies
sushitrash
sushitrash3w ago
Thank you solve by add script and style . I totally blind of this document page.