PHP Configuration
Server & PHP Settings
| PHP Version | {{ phpversion() }} |
| Server Software | {{ $_SERVER['SERVER_SOFTWARE'] ?? 'N/A' }} |
| Max Execution Time | {{ ini_get('max_execution_time') }}s |
| Memory Limit | {{ ini_get('memory_limit') }} |
| Upload Max Filesize | {{ ini_get('upload_max_filesize') }} |
| PHP SAPI | {{ php_sapi_name() }} |
Laravel Configuration
Framework Settings
| Laravel Version | {{ app()->version() }} |
| Environment | {{ app()->environment() }} |
| Debug Mode | {{ config('app.debug') ? 'Enabled' : 'Disabled' }} |
| Timezone | {{ config('app.timezone') }} |
| Cache Driver | {{ config('cache.default') }} |
| Session Driver | {{ config('session.driver') }} |
Database Information
Storage & Statistics
Database Driver
{{ strtoupper(config('database.default')) }}
Database Size
@php $size = DB::select('SELECT SUM(data_length + index_length) / 1024 / 1024 as size FROM information_schema.TABLES WHERE table_schema = ?', [config('database.connections.mysql.database')]); $size = $size[0]->size ?? 0; @endphp {{ round($size, 2) }} MB
Table Count
@php $tables = DB::select('SHOW TABLES'); @endphp {{ count($tables) }}
| Store Information | @php $hasStore = \App\Models\StoreInformation::exists(); @endphp {{ $hasStore ? 'Configured' : 'Using Fallback' }} |
| Users | {{ \App\Models\User::count() }} |
| Products | {{ \App\Models\Product::count() }} |
| Customers | {{ \App\Models\Customer::count() }} |
Server Information
Operating System & Environment
| Operating System | {{ php_uname('s') }} |
| Host Name | {{ php_uname('n') }} |
| Release Name | {{ php_uname('r') }} |
| Machine Type | {{ php_uname('m') }} |
| Zend Engine | {{ zend_version() }} |
| Extensions | {{ count(get_loaded_extensions()) }} |
| Document Root | {{ $_SERVER['DOCUMENT_ROOT'] ?? 'N/A' }} |
| Server Protocol | {{ $_SERVER['SERVER_PROTOCOL'] ?? 'N/A' }} |