© 2026 Hedgehog Software, LLC
Twitter
GitHub
Discord
System
Light
Dark
More
Communities
Docs
About
Terms
Privacy
Search
Star
Feedback
Setup for Free
F
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
(
[
T
e
x
t
C
o
l
u
m
n
:
:make
(
'deals
'
)
-
>default
(function
(Platform
$platform
)
{
return
D
e
a
l
:
:where
(
'platform
_id
'
,
$platform
-
>id
)
-
>count
(
)
;
}
)
,
]
)
;
}
Installation - Introduction - Filament
Solution
Dont know what the problem was
. But is was fixed by running
:
php artisan
f
i
l
a
m
e
n
t
:install
-
-scaffold
npm install
npm run dev
Jump to solution
Filament
Join
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307
Members
View on Discord
Resources
ModelContextProtocol
ModelContextProtocol
MCP Server
Was this page helpful?
Yes
No
Similar Threads
Recent Announcements
Similar Threads
CSS not loading correctly
F
Filament / ❓┊help
2y ago
V4 css problem with individual componenst
F
Filament / ❓┊help
8mo ago
Filament CSS not loading in NGROK
F
Filament / ❓┊help
3y ago
table custom css
F
Filament / ❓┊help
2y ago