Filament Table Livewire only loads a cross when opened
What I am trying to do:
Create a public table that does not require a panel and login using livewire compoenent
What I did:
I followed the guide on documentation
https://filamentphp.com/docs/3.x/tables/adding-a-table-to-a-livewire-component#setting-up-the-livewire-component
My issue/the error:
When I open it the page, it just shows a cross, I thought maybe a wrong URL but I changed it to something else and shows the same result of a cross, I know its kind of working since if its actually the wrong URL I get the 404 not found
Code:
the route
Route::get('equipments', ListEquipments::class);
the livewire
Solution:Jump to solution
Check the DevTools network tab and console. I guess you are missing the stylesheets.
2 Replies
Solution
Check the DevTools network tab and console. I guess you are missing the stylesheets.
Try "npm run build" in terminal?