Unable to find component: [app.filament.widgets.office-overview]
I am experiencing a problem in symfony, i need some guide on how to fix this problem.

7 Replies
class Accounts extends Page
{
protected static ?string $navigationIcon = 'heroicon-o-document-text';
protected static string $view = 'filament.pages.accounts';
protected function getHeaderWidgets(): array
{
return [
OfficeOverview::class,
];
}
}
How did you import the
OfficeOverview
and where is it located?
Do not forget to clear caches tooIt was located at the Filament > Widgets

This just happens after I accidentally run "php artisan filament:optimize" in local
I tried to clear cache, it does not resolve my problem
Solution
run
php artisan filament:optimize-clear
It works! Thankss!!