System / Server Information

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'] }}

Server Information

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($systemInfo['session_driver'] === 'database')

Session Table

@csrf

If you clear the sessions table, you and all other users may be logged out and will need to login again.

@endif

PHP Configuration

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' }}

PHP Extensions

@foreach($phpExtensions as $ext => $status) @endforeach
ExtensionStatus
{{ $ext }} @if($status['loaded']) Enabled {{ $status['version'] ? '(v' . $status['version'] . ')' : '' }} @else Not Installed @endif

Database Information

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 Information

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'] }}

Disk Space

Used: {{ $diskSpace['used'] }} Free: {{ $diskSpace['free'] }}

Total: {{ $diskSpace['total'] }} ({{ $diskSpace['percentage'] }}% used)

@if(count($modules) > 0)

Installed Modules ({{ count($modules) }})

@foreach($modules as $module) @endforeach
ModuleVersionStatus
{{ $module->name }} {{ $module->version ?? '1.0.0' }} {{ $module->is_active ? 'Active' : 'Inactive' }}
@endif