A Filament plugin that adds an app overview widget to your admin panel.
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,
8000
App\Filament\Resources\Blog\CategoryResource::class,
App\Filament\Resources\Blog\PostResource::class,
],
'excludes' => [
// App\Filament\Resources\Blog\AuthorResource::class,
],
];
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.