@extends('layouts.app_settings')
@section('title', 'MySQL Status')
@section('content')
📊 MySQL Connection Status
⏱️ آخر تحديث: {{ now() }}
Variable |
Value |
@foreach ($data as $key => $value)
{{ $key }} |
{{ $value }} |
@endforeach
🧩 قائمة الاتصالات المفتوحة (SHOW FULL PROCESSLIST)
ID |
User |
Host |
DB |
Command |
Time |
State |
Info |
@foreach ($processes as $p)
{{ $p->Id }} |
{{ $p->User }} |
{{ $p->Host }} |
{{ $p->db }} |
{{ $p->Command }} |
{{ $p->Time }} |
{{ $p->State }} |
{{ \Illuminate\Support\Str::limit($p->Info, 100) }} |
@endforeach
@endsection