Changing which row a widget get displayed on
Hi,
I have created a couple of widgets and added them to my dashboard with the correct.
Now I would like to be able to edit which row they're being displayed on.
The charts would have to be displayed on the 2nd row while keeping the stats overview on the first row. Is there a way to achieve this in filamentphp?
6 Replies
Probably with some custom CSS... If you can target your 2nd widget (cars added) and add
grid-column-start: 1
col-start-1
if you're all setup with TailwindWould there be a possibility to create like an invisible widget?
Yes actually, that's a simple solution π
How could i make an invisible widget? As I keep the white card border for now
I might just add another widget lmao
In the Blade view, remove the
filament::card
Thank you!