Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

anonymouse703's avatar

How to sort/arrange widgets in filament v3?

I already remove the default widgets in AdminPanelProvider

  ->widgets([
                // Widgets\AccountWidget::class,
                // Widgets\FilamentInfoWidget::class,
            ])

and created new widgets but I cannot sort the widgets display

i want to display the stats chart above then other chart below

0 likes
1 reply
youcefkacem's avatar
Level 1

you can use this property

protected static ?int $sort = 20;

and give it the integer to make it sort place it inside the widget class in your case you have AccountWidget you can make it places first then FilamentInfoWidget by given them the $sort property as bellow

AccountWidget =======> $sort = 1; FilamentInfoWidget ====> $sort = 2;

3 likes

Please or to participate in this conversation.