View system and server configuration details
PHP Version
{{ $systemInfo['php_version'] }}
MySQL Version
{{ $systemInfo['mysql_version'] }}
Web Server
{{ Str::limit($systemInfo['webserver'], 20) }}
Laravel Version
{{ $systemInfo['laravel_version'] }}
| OS | {{ $systemInfo['os'] }} |
| Web Server | {{ $systemInfo['webserver'] }} |
| Webserver User | {{ $systemInfo['webserver_user'] }} |
| Server Protocol | {{ $systemInfo['server_protocol'] }} |
| Installation Path | {{ $systemInfo['installation_path'] }} |
| Temp DIR | {{ $systemInfo['temp_dir'] }} |
| Base URL | {{ $systemInfo['base_url'] }} |
| Environment | {{ ucfirst($systemInfo['environment']) }} |
| Debug Mode | {{ $systemInfo['debug_mode'] ? 'Enabled' : 'Disabled' }} |
| Timezone | {{ $systemInfo['timezone'] }} |
| CSRF Enabled | {{ $systemInfo['csrf_enabled'] }} |
| Cloudflare | {{ $systemInfo['cloudflare'] }} |
If you clear the sessions table, you and all other users may be logged out and will need to login again.
| PHP Version | {{ $systemInfo['php_version'] }} |
| memory_limit | {{ $systemInfo['memory_limit'] }} |
| max_execution_time | {{ $systemInfo['max_execution_time'] }} seconds |
| upload_max_filesize | {{ $systemInfo['upload_max_filesize'] }} |
| post_max_size | {{ $systemInfo['post_max_size'] }} |
| max_input_vars | {{ $systemInfo['max_input_vars'] }} |
| allow_url_fopen | {{ $systemInfo['allow_url_fopen'] ? 'Enabled' : 'Disabled' }} |
| Extension | Status |
|---|---|
| {{ $ext }} | @if($status['loaded']) Enabled {{ $status['version'] ? '(v' . $status['version'] . ')' : '' }} @else Not Installed @endif |
| Database Driver | {{ $systemInfo['db_driver'] }} |
| MySQL Version | {{ $systemInfo['mysql_version'] }} |
| Database Name | {{ $systemInfo['db_name'] }} |
| Database Host | {{ $systemInfo['db_host'] }} |
| Max Connections | {{ $systemInfo['max_connections'] }} |
| Max Packet Size | {{ $systemInfo['max_packet_size'] }} |
| sql_mode | {{ $systemInfo['sql_mode'] }} |
| Laravel Version | {{ $systemInfo['laravel_version'] }} |
| Cache Driver | {{ $systemInfo['cache_driver'] }} |
| Session Driver | {{ $systemInfo['session_driver'] }} |
| Queue Driver | {{ $systemInfo['queue_driver'] }} |
| Mail Driver | {{ $systemInfo['mail_driver'] }} |
| Filesystem Driver | {{ $systemInfo['filesystem_driver'] }} |
Total: {{ $diskSpace['total'] }} ({{ $diskSpace['percentage'] }}% used)
| Module | Version | Status |
|---|---|---|
| {{ $module->name }} | {{ $module->version ?? '1.0.0' }} | {{ $module->is_active ? 'Active' : 'Inactive' }} |