The laravel-admin version of the phpinfo() function, Inspired by nova-phpinfo
composer require laravel-admin-ext/phpinfoIf you want to add a link entry in the left menu, use the following command to import
php artisan admin:import phpinfoIn the extensions section of the config/admin.php file, add configurations
    'extensions' => [
        'phpinfo' => [
        
            // Set this to false if you want to disable this extension
            'enable' => true,
            
            // What information to show,see http://php.net/manual/en/function.phpinfo.php#refsect1-function.phpinfo-parameters
            'what' => INFO_ALL,
            
            // Set access path,defaults to `phpinfo`
            //'path' => '~phpinfo',
        ]
    ]Open http://localhost/admin/phpinfo in your broswer after install
Help keeping the project development going, by donating a little. Thanks in advance.
Licensed under The MIT License (MIT).

