Introduction
Before continuing, make sure you have installed panel builder.
php artisan filament:install --panels
Edit AdminPanelProvider
Edit file app/Providers/Filament/AdminPanelProvider.php
Here we found default widgets, you can remove it.
$panel
->widgets([
Widgets\AccountWidget::class,
Widgets\FilamentInfoWidget::class,
])
Open /admin
and widget is gone.
Top comments (0)