@extends('layouts.app_settings') @section('title', 'MySQL Status') @section('content')

📊 MySQL Connection Status

@foreach ($data as $key => $value) @endforeach
Variable Value
{{ $key }} {{ $value }}

🧩 قائمة الاتصالات المفتوحة (SHOW FULL PROCESSLIST)

@foreach ($processes as $p) @endforeach
ID User Host DB Command Time State Info
{{ $p->Id }} {{ $p->User }} {{ $p->Host }} {{ $p->db }} {{ $p->Command }} {{ $p->Time }} {{ $p->State }} {{ \Illuminate\Support\Str::limit($p->Info, 100) }}
@endsection