© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•8mo ago•
7 replies
Booltje124

Table individual component css not loading

Hi!

I just installed a fresh laravel 12 installation (livewire starter kit), and installed all individual filament components.
But when i want to load a table, it does not show the css.

Followed these instructions:
https://filamentphp.com/docs/4.x/introduction/installation

Also added @FilamentScripts and @FilamentStyles to body and head.

What could be the issue?

class ShowPlatforms extends Component implements HasActions, HasSchemas, HasTable
{

use InteractsWithActions;
use InteractsWithSchemas;
use InteractsWithTable;

public function table(Table $table): Table
{
return $table
->query(auth()->user()->platforms()->getQuery())
->heading('Platforms')
->description('Check out your platforms below')
->columns([
TextColumn::make('deals')
->default(function (Platform $platform) {
return Deal::where('platform_id', $platform->id)->count();
}),
]);
}
Schermafbeelding_2025-07-04_om_16.21.13.png
Installation - Introduction - Filament
Solution
Dont know what the problem was. But is was fixed by running:

php artisan filament:install --scaffold

npm install

npm run dev
Jump to solution
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

CSS not loading correctly
FilamentFFilament / ❓┊help
2y ago
V4 css problem with individual componenst
FilamentFFilament / ❓┊help
8mo ago
Filament CSS not loading in NGROK
FilamentFFilament / ❓┊help
3y ago
table custom css
FilamentFFilament / ❓┊help
2y ago