@extends('layouts.admin') @section('title', 'System Health') @section('content')
| PHP Version | {{ $systemInfo['php_version'] }} |
| Laravel Version | {{ $systemInfo['laravel_version'] }} |
| Server Software | {{ $systemInfo['server_software'] }} |
| Server OS | {{ $systemInfo['server_os'] }} |
| Memory Limit | {{ $systemInfo['memory_limit'] }} |
| Max Execution Time | {{ $systemInfo['max_execution_time'] }} seconds |
| Timezone | {{ $systemInfo['timezone'] }} |
| Environment | {{ $systemInfo['environment'] }} |
| Driver | {{ $databaseInfo['driver'] }} |
| Database | {{ $databaseInfo['database'] }} |
| Connection Status | {{ $databaseInfo['connection_status'] }} |
| Table Count | {{ $databaseInfo['table_count'] }} |
| Error | {{ $databaseInfo['error'] }} |
| Table | Size | Rows |
|---|---|---|
| {{ $table->table }} | {{ $table->size_mb }} MB | {{ number_format($table->rows) }} |
| Local Disk Status | {{ $storageInfo['local_disk_status'] }} |
| Public Disk Status | {{ $storageInfo['public_disk_status'] }} |
| Local Disk Free Space | {{ $storageInfo['local_disk_free_space'] }} |
| Public Disk Free Space | {{ $storageInfo['public_disk_free_space'] }} |
| Cache Driver | {{ $cacheInfo['driver'] }} |
| Cache Status | {{ $cacheInfo['status'] }} |
| Cache Prefix | {{ $cacheInfo['prefix'] }} |
| Application Name | {{ $applicationInfo['name'] }} |
| Application URL | {{ $applicationInfo['url'] }} |
| Debug Mode | {{ $applicationInfo['debug'] }} |
| Maintenance Mode | {{ $applicationInfo['maintenance_mode'] }} |
| Last Calculation | {{ $applicationInfo['last_calculation'] }} |
| Total Calculations | {{ number_format($applicationInfo['total_calculations']) }} |
| Total Users | {{ number_format($applicationInfo['total_users']) }} |