How to change the content of the widgets on the FilamentPHP dashboard page? #15100
-
PackagePanel builder Package Version3.2 How can we help you?Hi, as I said in the title, where else can I change the places that appear in the picture, not from the “vendor” folder? |
Beta Was this translation helpful? Give feedback.
Answered by
leandrocfe
Dec 16, 2024
Replies: 1 comment 2 replies
-
They are in your panel provider $panel
...
->widgets([
Widgets\AccountWidget::class,
Widgets\FilamentInfoWidget::class,
]) You can hide them and create custom widgets |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create a custom widget
You can copy and paste the original content into your view file
resources/views/filament/widgets/custom-info-widget.blade.php
, then edit it as needed. If you are using Tailwind classes that Filament doesn't include, create a custom theme.