Widget to show an overview of resources on the dashboard.
You can install the package via composer:
composer require awcodes/overlook
Then add the widget to your dashboard class or the Filament config file.
'widgets' => [ 'namespace' => 'App\\Filament\\Widgets', 'path' => app_path('Filament/Widgets'), 'register' => [ \Awcodes\Overlook\Overlook::class, ... ],],
By default, Overlook will display any resource registered with Filament, while still honoring the canViewAny
policy. This can be undesired and also slow down the dashboard. To prevent this behavior publish the config file with:
php artisan vendor:publish --tag="overlook-config"
Inside the config you will have options to either "include" or "exclude" resources from being displayed.
return [ 'includes' => [ App\Filament\Resources\Blog\AuthorResource::class, App\Filament\Resources\Blog\CategoryResource::class, App\Filament\Resources\Blog\PostResource::class, ], 'excludes' => [// App\Filament\Resources\Blog\AuthorResource::class, ],];