This module adds System section to the administration panel which contains useful system information and logs, (*1)
This package is part of Netcore CMS ecosystem and is only functional in a project that has following packages installed:, (*2)
https://github.com/netcore/netcore, (*3)
https://github.com/netcore/module-admin, (*4)
https://github.com/netcore/module-user, (*5)
https://github.com/nWidart/laravel-modules, (*6)
If you want to enable network usage statistics, you should first install "ifstat" on your server, (*7)
sudo apt-get install ifstat, (*8)
Require this package with composer: ```$xslt composer require netcore/module-system, (*9)
Publish config, assets, migrations. Migrate and seed: ```$xslt php artisan module:publish System php artisan module:publish-migration System php artisan migrate php artisan module:seed System
System section:
, (*10)
You can access the system functionality with core(), (*11)
Get current server information, (*12)
core()->systemInfo();
Get current users browser, (*13)
core()->browser();
Get current users operating system, (*14)
core()->os();
Get current users IP, (*15)
core()->userIp();
Useful log functions, (*16)
core()->error();
core()->warning();```PHP core()->info();```PHP core()->debug();