Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 1.87 KB

README.md

File metadata and controls

62 lines (40 loc) · 1.87 KB

System Info Widget

Latest Version on Packagist Software License Fix PHP Code Styling Total Downloads

Screenshot of Application Feature

A very simple filament plugin to show system info widget

Installation

You can install the package via composer:

composer require rmsramos/system-info

Usage

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),
            ]);
    }
}

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.