A very simple filament plugin to show system info widget
You can install the package via composer:
composer require rmsramos/system-info
In your Panel Service Provider (App\Providers\Filament)
active the plugin
Add the Rmsramos\SystemInfo\SystemInfoPlugin
to your panel config
use Rmsramos\SystemInfo\SystemInfoPlugin;
class AdminPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
SystemInfoPlugin::make()
->setSort(2),
]);
}
}
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.