Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 1.45 KB

File metadata and controls

41 lines (31 loc) · 1.45 KB

PHPInfo for Filament

Tests

This package adds a new page to the Filament admin panel that displays the output of phpinfo() in a nicely formatted way.

Compatibility

Version PHP Laravel Filament
1.2 8.3+ 11, 12, 13 3, 4, 5

Installation

composer require stechstudio/filament-phpinfo

In your AdminPanelProvider (or other \Filament\PanelProvider), add this package to your plugins:

$panel
    ->plugins([
        \STS\FilamentPHPInfo\FilamentPHPInfoPlugin::make(),
    ])

Configuration

The navigation group and icon are configurable.

Publish the filament-phpinfo config file with:

php artisan vendor:publish --tag=filament-phpinfo-config
Option Description
navigation-group The PHPInfo page's navigation group.
navigation-icon The PHPInfo page's icon. See Filament's documentation for values.
Screenshot
PHPInfo Page