How to Hide the Info Widget on the Filament Dashboard
In this lesson, we will see how to hide the info widget on the Filament dashboard. The info widget is one of the default widgets that comes with Filament.
Update AdminPanelProvider.php File
Inside the file 'AdminPanelProvider.php,' find the method widgets.
This method takes an array as a parameter, and the array contains the widgets.
One of them is the info widget.
So, to disable it, just comment the line below.
->widgets([
Widgets\AccountWidget::class,
// Widgets\FilamentInfoWidget::class,
])