@extends('admin.layout')
@section('title', 'Database Dashboard')
@section('content')
Database Dashboard
| Driver |
{{ $stats['driver'] ?? 'Unknown' }} |
| Version |
{{ $stats['version'] ?? 'Unknown' }} |
| Connection Status |
{{ $stats['connection_status'] ?? 'Unknown' }} |
| Tables |
{{ $stats['table_count'] ?? 'Unknown' }} |
| Indexes |
{{ $stats['index_count'] ?? 'Unknown' }} |
| Total Rows (approx.) |
{{ number_format($stats['total_rows'] ?? 0) }} |
| Total Queries |
Loading... |
| Total Query Time |
Loading... |
| Average Query Time |
Loading... |
| Slow Queries |
Loading... |
| SQL |
Parameters |
Time (ms) |
Timestamp |
| Loading... |
| SQL |
Parameters |
Time (ms) |
Timestamp |
Connection |
| Loading... |
@endsection
@section('scripts')
@endsection