remedix
Use metronic or any other admin panel with filament ?
ok i figured it out. got a lot of help from this video https://www.youtube.com/watch?v=BH29fNA6U7o
apparently i had both in my composer
"filament/tables"
and "filament/filament"
this was causing unexpected behaviour. I also had alpinejs
in my packages.json
file. after i fixed that, i cleaned up node_modules and vendors and gave it another go. all good now!12 replies
Use metronic or any other admin panel with filament ?
i must be doing something wrong. i followed the guide several times. i think it's because i already had a laravel project running and i followed the part about adding filament on an existing project. i will keep working on it and report back. if anybody has some insights, please do share
12 replies
Use metronic or any other admin panel with filament ?
Hi @Dennis Koch , i followed that guide just now. The styles seem a bit off but the behaviour is the same. However i noticed the following. When I add
lazy="on-load"
to the livewire component the table is now reactive but all the action menus are expanded. They are clickable but expanded.
Also i followed the guide of livewire installation just in case i missed something and i had to remove everything form the app.js
file and set the 'inject_assets' => false,
from livewire config as i am using manually injection using @livewireScripts
Still it does not seem to be reactive12 replies
Use metronic or any other admin panel with filament ?
i think i managed to do this. I used
make:livewire-table
and that created a livewire component which i managed to embed in laravel (not in filament admin panel) using @livewire('job.list-jobs')
However the table is not reactive and i don't see anything on my console12 replies
Use metronic or any other admin panel with filament ?
yes im moving into laravel and filament. I've written a very similar version of filament in Zend Framwork 1.x 10 years ago and it is time to retire it. Filament does exactly what i envisioned and tried to do with my app 10 years ago but more elegant and efficient 🙂 So i decided to move into this ecosystem. However i depend a lot to metronic which is a fully featured admin panel (in terms of frontend) - my clients are very pleased with the look and feel of it and i want to keep that as it is actively maintained. I just want to have a way to include a filament table or forms wherever i want in my laravel app. I think i need to do this with the livewire components but i'm not sure
12 replies