@extends('layouts.admin') @section('title', 'Hiệu suất hệ thống - MU Admin Panel') @section('styles') @endsection @section('content') @if(session('success'))
✅ {{ session('success') }}
@endif

🗄️ Website Database

Kết nối {{ $stats['website_db']['connection'] }}
Thời gian truy vấn {{ $stats['website_db']['query_time'] }}
Tổng records {{ number_format($stats['website_db']['total_rows']) }}
@if(isset($stats['website_db']['tables'])) @foreach($stats['website_db']['tables'] as $table => $count)
{{ $table }} {{ is_numeric($count) ? number_format($count) : $count }}
@endforeach @endif

🎮 Game Database

Kết nối {{ $stats['game_db']['connection'] }}
Thời gian truy vấn {{ $stats['game_db']['query_time'] }}
Tổng records {{ number_format($stats['game_db']['total_rows']) }}
@if(isset($stats['game_db']['tables'])) @foreach($stats['game_db']['tables'] as $table => $count)
{{ $table }} {{ is_numeric($count) ? number_format($count) : $count }}
@endforeach @endif

💾 Cache System

Driver {{ $stats['cache_stats']['driver'] }}
Trạng thái {{ $stats['cache_stats']['status'] }}
Thời gian phản hồi {{ $stats['cache_stats']['response_time'] }}

🖥️ System Info

PHP Version {{ $stats['system_info']['php_version'] }}
Laravel Version {{ $stats['system_info']['laravel_version'] }}
Memory Usage {{ $stats['system_info']['memory_usage'] }}
Memory Peak {{ $stats['system_info']['memory_peak'] }}
Server Time {{ $stats['system_info']['server_time'] }}
Timezone {{ $stats['system_info']['timezone'] }}

🔧 Hành động hệ thống

Các thao tác bảo trì và tối ưu hóa hệ thống

@csrf
@csrf
📋 Xem Admin Logs
@endsection