Rebrand Hub+Flux
This commit is contained in:
parent
0a3e52d603
commit
9b47296cea
130 changed files with 9357 additions and 3345 deletions
|
|
@ -8,19 +8,19 @@
|
|||
<flux:table.column>{{ __('Queries') }}</flux:table.column>
|
||||
</flux:table.columns>
|
||||
<flux:table.rows>
|
||||
@forelse($rows as $row)
|
||||
@forelse ($rows as $row)
|
||||
<flux:table.row :key="$row['value']">
|
||||
<flux:table.cell><flux:text class="font-mono text-xs">{{ $row['value'] }}</flux:text></flux:table.cell>
|
||||
<flux:table.cell>{{ number_format($row['requests']) }}</flux:table.cell>
|
||||
<flux:table.cell>{{ number_format($row['average_duration_ms'], 2, ',', '.') }} ms</flux:table.cell>
|
||||
<flux:table.cell>{{ number_format($row['max_duration_ms']) }} ms</flux:table.cell>
|
||||
<flux:table.cell>{{ number_format($row['average_database_time_ms'], 2, ',', '.') }} ms</flux:table.cell>
|
||||
<flux:table.cell>{{ number_format($row['total_queries']) }}</flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink)] font-mono">{{ $row['value'] }}</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12.5px] text-[color:var(--color-ink)] tabular-nums">{{ number_format($row['requests']) }}</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink-2)] tabular-nums">{{ number_format($row['average_duration_ms'], 2, ',', '.') }} ms</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink-2)] tabular-nums">{{ number_format($row['max_duration_ms']) }} ms</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink-2)] tabular-nums">{{ number_format($row['average_database_time_ms'], 2, ',', '.') }} ms</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink-2)] tabular-nums">{{ number_format($row['total_queries']) }}</span></flux:table.cell>
|
||||
</flux:table.row>
|
||||
@empty
|
||||
<flux:table.row>
|
||||
<flux:table.cell colspan="6">
|
||||
<div class="py-8 text-center text-sm text-zinc-500">{{ __('Keine Daten gefunden.') }}</div>
|
||||
<div class="py-8 text-center text-[12px] text-[color:var(--color-ink-3)]">{{ __('Keine Daten gefunden.') }}</div>
|
||||
</flux:table.cell>
|
||||
</flux:table.row>
|
||||
@endforelse
|
||||
|
|
|
|||
|
|
@ -51,112 +51,129 @@ new #[Layout('components.layouts.app'), Title('Performance Reports')] class exte
|
|||
}
|
||||
}; ?>
|
||||
|
||||
<div class="space-y-6">
|
||||
<flux:card>
|
||||
<div class="flex flex-col gap-4 lg:flex-row lg:items-start lg:justify-between">
|
||||
<div>
|
||||
<flux:heading size="lg">{{ __('Performance Reports') }}</flux:heading>
|
||||
<flux:subheading>
|
||||
{{ __('Auswertung der Slow-Admin-Request-Logs aus dem admin_slow Log-Kanal.') }}
|
||||
</flux:subheading>
|
||||
<div class="space-y-8">
|
||||
{{-- ============== PAGE HEADER ============== --}}
|
||||
<header class="grid items-end gap-8" style="grid-template-columns:1fr auto;">
|
||||
<div class="min-w-0">
|
||||
<div class="flex items-center gap-3 mb-3 flex-nowrap whitespace-nowrap">
|
||||
<span class="badge hub dot">{{ __('Admin Backend') }}</span>
|
||||
<span class="eyebrow muted">{{ __('Administration · Reports') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="text-sm text-zinc-500 dark:text-zinc-400">
|
||||
{{ __('Logdateien') }}: {{ $report['summary']['files'] }}
|
||||
</div>
|
||||
</div>
|
||||
</flux:card>
|
||||
|
||||
<flux:card>
|
||||
<div class="grid gap-4 md:grid-cols-2 xl:grid-cols-6">
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Von') }}</flux:label>
|
||||
<flux:input type="datetime-local" wire:model.live.debounce.500ms="from" />
|
||||
</flux:field>
|
||||
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Bis') }}</flux:label>
|
||||
<flux:input type="datetime-local" wire:model.live.debounce.500ms="to" />
|
||||
</flux:field>
|
||||
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Route') }}</flux:label>
|
||||
<flux:input wire:model.live.debounce.500ms="routeFilter" placeholder="admin.users" />
|
||||
</flux:field>
|
||||
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Pfad') }}</flux:label>
|
||||
<flux:input wire:model.live.debounce.500ms="pathFilter" placeholder="/admin/users" />
|
||||
</flux:field>
|
||||
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Status') }}</flux:label>
|
||||
<flux:select wire:model.live="statusFilter">
|
||||
<option value="">{{ __('Alle') }}</option>
|
||||
<option value="200">200</option>
|
||||
<option value="302">302</option>
|
||||
<option value="403">403</option>
|
||||
<option value="422">422</option>
|
||||
<option value="500">500</option>
|
||||
</flux:select>
|
||||
</flux:field>
|
||||
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Min. Dauer') }}</flux:label>
|
||||
<flux:input type="number" min="0" wire:model.live.debounce.500ms="minDurationMs" placeholder="ms" />
|
||||
</flux:field>
|
||||
<h1 class="text-[30px] font-bold tracking-[-0.6px] leading-[1.15] m-0 text-[color:var(--color-ink)]">
|
||||
{{ __('Performance Reports') }}
|
||||
</h1>
|
||||
<p class="text-[13px] leading-[1.55] mt-2 m-0 max-w-[640px] text-[color:var(--color-ink-2)]">
|
||||
{{ __('Auswertung der Slow-Admin-Request-Logs aus dem admin_slow Log-Kanal.') }}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="mt-4 flex items-center justify-between gap-3">
|
||||
<flux:field class="max-w-36">
|
||||
<flux:label>{{ __('Detailzeilen') }}</flux:label>
|
||||
<flux:select wire:model.live="limit">
|
||||
<option value="10">10</option>
|
||||
<option value="25">25</option>
|
||||
<option value="50">50</option>
|
||||
<option value="100">100</option>
|
||||
</flux:select>
|
||||
</flux:field>
|
||||
<div class="flex items-center gap-2 flex-shrink-0">
|
||||
<span class="badge hub">{{ __('Logdateien') }}: {{ $report['summary']['files'] }}</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<flux:button variant="ghost" icon="arrow-path" wire:click="resetFilters">
|
||||
{{-- ============== FILTER-PANEL ============== --}}
|
||||
<article class="panel">
|
||||
<div class="panel-head">
|
||||
<span class="section-eyebrow">{{ __('Filter') }}</span>
|
||||
<flux:button size="sm" variant="ghost" icon="arrow-path" wire:click="resetFilters">
|
||||
{{ __('Filter zurücksetzen') }}
|
||||
</flux:button>
|
||||
</div>
|
||||
</flux:card>
|
||||
<div class="p-5 space-y-4">
|
||||
<div class="grid gap-4 md:grid-cols-2 xl:grid-cols-6">
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Von') }}</flux:label>
|
||||
<flux:input type="datetime-local" wire:model.live.debounce.500ms="from" />
|
||||
</flux:field>
|
||||
|
||||
<div class="grid grid-cols-1 gap-4 md:grid-cols-2 xl:grid-cols-4">
|
||||
<flux:card>
|
||||
<flux:text class="text-sm text-zinc-500 dark:text-zinc-400">{{ __('Requests') }}</flux:text>
|
||||
<flux:text size="xl" weight="bold">{{ number_format($report['summary']['total_requests']) }}</flux:text>
|
||||
</flux:card>
|
||||
<flux:card>
|
||||
<flux:text class="text-sm text-zinc-500 dark:text-zinc-400">{{ __('Ø Dauer') }}</flux:text>
|
||||
<flux:text size="xl" weight="bold">{{ number_format($report['summary']['average_duration_ms'], 2, ',', '.') }} ms</flux:text>
|
||||
</flux:card>
|
||||
<flux:card>
|
||||
<flux:text class="text-sm text-zinc-500 dark:text-zinc-400">{{ __('Max. Dauer') }}</flux:text>
|
||||
<flux:text size="xl" weight="bold">{{ number_format($report['summary']['max_duration_ms']) }} ms</flux:text>
|
||||
</flux:card>
|
||||
<flux:card>
|
||||
<flux:text class="text-sm text-zinc-500 dark:text-zinc-400">{{ __('Max. Queries') }}</flux:text>
|
||||
<flux:text size="xl" weight="bold">{{ number_format($report['summary']['max_query_count']) }}</flux:text>
|
||||
</flux:card>
|
||||
</div>
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Bis') }}</flux:label>
|
||||
<flux:input type="datetime-local" wire:model.live.debounce.500ms="to" />
|
||||
</flux:field>
|
||||
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Route') }}</flux:label>
|
||||
<flux:input wire:model.live.debounce.500ms="routeFilter" placeholder="admin.users" />
|
||||
</flux:field>
|
||||
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Pfad') }}</flux:label>
|
||||
<flux:input wire:model.live.debounce.500ms="pathFilter" placeholder="/admin/users" />
|
||||
</flux:field>
|
||||
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Status') }}</flux:label>
|
||||
<flux:select wire:model.live="statusFilter">
|
||||
<option value="">{{ __('Alle') }}</option>
|
||||
<option value="200">200</option>
|
||||
<option value="302">302</option>
|
||||
<option value="403">403</option>
|
||||
<option value="422">422</option>
|
||||
<option value="500">500</option>
|
||||
</flux:select>
|
||||
</flux:field>
|
||||
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Min. Dauer') }}</flux:label>
|
||||
<flux:input type="number" min="0" wire:model.live.debounce.500ms="minDurationMs" placeholder="ms" />
|
||||
</flux:field>
|
||||
</div>
|
||||
|
||||
<div class="flex items-center justify-end gap-3 pt-2 border-t border-[color:var(--color-bg-rule)]">
|
||||
<flux:field class="max-w-36">
|
||||
<flux:label>{{ __('Detailzeilen') }}</flux:label>
|
||||
<flux:select wire:model.live="limit">
|
||||
<option value="10">10</option>
|
||||
<option value="25">25</option>
|
||||
<option value="50">50</option>
|
||||
<option value="100">100</option>
|
||||
</flux:select>
|
||||
</flux:field>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
{{-- ============== KPI-Reihe ============== --}}
|
||||
<section class="grid grid-cols-1 gap-4 md:grid-cols-2 xl:grid-cols-4">
|
||||
<x-portal.stat-card variant="primary" :label="__('Requests')" :value="number_format($report['summary']['total_requests'])">
|
||||
<x-slot:meta>{{ __('im Sample') }}</x-slot:meta>
|
||||
<x-slot:trend>{{ __('Slow-Log') }}</x-slot:trend>
|
||||
</x-portal.stat-card>
|
||||
<x-portal.stat-card variant="muted" :label="__('Ø Dauer')" :value="number_format($report['summary']['average_duration_ms'], 2, ',', '.').' ms'">
|
||||
<x-slot:meta>{{ __('Mittelwert') }}</x-slot:meta>
|
||||
<x-slot:trend>{{ __('alle Requests') }}</x-slot:trend>
|
||||
</x-portal.stat-card>
|
||||
<x-portal.stat-card variant="warn" :label="__('Max. Dauer')" :value="number_format($report['summary']['max_duration_ms']).' ms'">
|
||||
<x-slot:meta>{{ __('Spitze') }}</x-slot:meta>
|
||||
<x-slot:trend>{{ __('schlechtester Wert') }}</x-slot:trend>
|
||||
</x-portal.stat-card>
|
||||
<x-portal.stat-card variant="warn" :label="__('Max. Queries')" :value="number_format($report['summary']['max_query_count'])">
|
||||
<x-slot:meta>{{ __('je Request') }}</x-slot:meta>
|
||||
<x-slot:trend>{{ __('N+1-Indikator') }}</x-slot:trend>
|
||||
</x-portal.stat-card>
|
||||
</section>
|
||||
|
||||
<div class="grid gap-6 xl:grid-cols-2">
|
||||
<flux:card class="overflow-hidden">
|
||||
<flux:heading size="md" class="mb-4">{{ __('Top Routen') }}</flux:heading>
|
||||
<article class="panel overflow-hidden">
|
||||
<div class="panel-head">
|
||||
<span class="section-eyebrow">{{ __('Top Routen') }}</span>
|
||||
</div>
|
||||
@include('livewire.admin.reports.slow-requests-table', ['rows' => $report['top_routes'], 'label' => __('Route')])
|
||||
</flux:card>
|
||||
</article>
|
||||
|
||||
<flux:card class="overflow-hidden">
|
||||
<flux:heading size="md" class="mb-4">{{ __('Top Pfade') }}</flux:heading>
|
||||
<article class="panel overflow-hidden">
|
||||
<div class="panel-head">
|
||||
<span class="section-eyebrow">{{ __('Top Pfade') }}</span>
|
||||
</div>
|
||||
@include('livewire.admin.reports.slow-requests-table', ['rows' => $report['top_paths'], 'label' => __('Pfad')])
|
||||
</flux:card>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<flux:card class="overflow-hidden">
|
||||
<flux:heading size="md" class="mb-4">{{ __('Langsamste Requests') }}</flux:heading>
|
||||
<article class="panel overflow-hidden">
|
||||
<div class="panel-head">
|
||||
<span class="section-eyebrow">{{ __('Langsamste Requests') }}</span>
|
||||
</div>
|
||||
<flux:table>
|
||||
<flux:table.columns>
|
||||
<flux:table.column>{{ __('Zeit') }}</flux:table.column>
|
||||
|
|
@ -168,29 +185,31 @@ new #[Layout('components.layouts.app'), Title('Performance Reports')] class exte
|
|||
<flux:table.column>{{ __('Queries') }}</flux:table.column>
|
||||
</flux:table.columns>
|
||||
<flux:table.rows>
|
||||
@forelse($report['slowest_requests'] as $entry)
|
||||
@forelse ($report['slowest_requests'] as $entry)
|
||||
<flux:table.row :key="$entry['timestamp'].'-'.$entry['route_name'].'-'.$entry['duration_ms']">
|
||||
<flux:table.cell>{{ $entry['timestamp'] }}</flux:table.cell>
|
||||
<flux:table.cell><flux:text class="font-mono text-xs">{{ $entry['route_name'] }}</flux:text></flux:table.cell>
|
||||
<flux:table.cell><flux:text class="font-mono text-xs">{{ $entry['path'] }}</flux:text></flux:table.cell>
|
||||
<flux:table.cell><flux:badge color="zinc" size="sm">{{ $entry['status_code'] }}</flux:badge></flux:table.cell>
|
||||
<flux:table.cell>{{ number_format($entry['duration_ms']) }} ms</flux:table.cell>
|
||||
<flux:table.cell>{{ number_format($entry['database_time_ms'], 2, ',', '.') }} ms</flux:table.cell>
|
||||
<flux:table.cell>{{ number_format($entry['query_count']) }}</flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink-3)] font-mono">{{ $entry['timestamp'] }}</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink)] font-mono">{{ $entry['route_name'] }}</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink-2)] font-mono">{{ $entry['path'] }}</span></flux:table.cell>
|
||||
<flux:table.cell><span class="badge hub">{{ $entry['status_code'] }}</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12.5px] font-semibold text-[color:var(--color-ink)] tabular-nums">{{ number_format($entry['duration_ms']) }} ms</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink-2)] tabular-nums">{{ number_format($entry['database_time_ms'], 2, ',', '.') }} ms</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink)] tabular-nums">{{ number_format($entry['query_count']) }}</span></flux:table.cell>
|
||||
</flux:table.row>
|
||||
@empty
|
||||
<flux:table.row>
|
||||
<flux:table.cell colspan="7">
|
||||
<div class="py-8 text-center text-sm text-zinc-500">{{ __('Keine Slow-Admin-Requests gefunden.') }}</div>
|
||||
<div class="py-8 text-center text-[12px] text-[color:var(--color-ink-3)]">{{ __('Keine Slow-Admin-Requests gefunden.') }}</div>
|
||||
</flux:table.cell>
|
||||
</flux:table.row>
|
||||
@endforelse
|
||||
</flux:table.rows>
|
||||
</flux:table>
|
||||
</flux:card>
|
||||
</article>
|
||||
|
||||
<flux:card class="overflow-hidden">
|
||||
<flux:heading size="md" class="mb-4">{{ __('Häufige Slow Queries') }}</flux:heading>
|
||||
<article class="panel overflow-hidden">
|
||||
<div class="panel-head">
|
||||
<span class="section-eyebrow">{{ __('Häufige Slow Queries') }}</span>
|
||||
</div>
|
||||
<flux:table>
|
||||
<flux:table.columns>
|
||||
<flux:table.column>{{ __('SQL') }}</flux:table.column>
|
||||
|
|
@ -199,51 +218,52 @@ new #[Layout('components.layouts.app'), Title('Performance Reports')] class exte
|
|||
<flux:table.column>{{ __('Max. Zeit') }}</flux:table.column>
|
||||
</flux:table.columns>
|
||||
<flux:table.rows>
|
||||
@forelse($report['slow_queries'] as $query)
|
||||
@forelse ($report['slow_queries'] as $query)
|
||||
<flux:table.row :key="md5($query['sql'])">
|
||||
<flux:table.cell><flux:text class="font-mono text-xs">{{ str($query['sql'])->limit(160) }}</flux:text></flux:table.cell>
|
||||
<flux:table.cell>{{ number_format($query['occurrences']) }}</flux:table.cell>
|
||||
<flux:table.cell>{{ number_format($query['average_time_ms'], 2, ',', '.') }} ms</flux:table.cell>
|
||||
<flux:table.cell>{{ number_format($query['max_time_ms'], 2, ',', '.') }} ms</flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink-2)] font-mono">{{ str($query['sql'])->limit(160) }}</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12.5px] text-[color:var(--color-ink)] tabular-nums">{{ number_format($query['occurrences']) }}</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink-2)] tabular-nums">{{ number_format($query['average_time_ms'], 2, ',', '.') }} ms</span></flux:table.cell>
|
||||
<flux:table.cell><span class="text-[12px] text-[color:var(--color-ink-2)] tabular-nums">{{ number_format($query['max_time_ms'], 2, ',', '.') }} ms</span></flux:table.cell>
|
||||
</flux:table.row>
|
||||
@empty
|
||||
<flux:table.row>
|
||||
<flux:table.cell colspan="4">
|
||||
<div class="py-8 text-center text-sm text-zinc-500">{{ __('Keine einzelnen Slow Queries im Sample gefunden.') }}</div>
|
||||
<div class="py-8 text-center text-[12px] text-[color:var(--color-ink-3)]">{{ __('Keine einzelnen Slow Queries im Sample gefunden.') }}</div>
|
||||
</flux:table.cell>
|
||||
</flux:table.row>
|
||||
@endforelse
|
||||
</flux:table.rows>
|
||||
</flux:table>
|
||||
</flux:card>
|
||||
</article>
|
||||
|
||||
<flux:card class="overflow-hidden">
|
||||
<flux:heading size="md" class="mb-4">{{ __('EXPLAIN Top Slow Queries') }}</flux:heading>
|
||||
|
||||
<div class="space-y-6">
|
||||
@forelse($report['explain_plans'] as $explain)
|
||||
<article class="panel overflow-hidden">
|
||||
<div class="panel-head">
|
||||
<span class="section-eyebrow">{{ __('EXPLAIN Top Slow Queries') }}</span>
|
||||
</div>
|
||||
<div class="p-5 space-y-6">
|
||||
@forelse ($report['explain_plans'] as $explain)
|
||||
<div class="space-y-3">
|
||||
<flux:text class="font-mono text-xs">{{ str($explain['sql'])->limit(180) }}</flux:text>
|
||||
<div class="text-[12px] text-[color:var(--color-ink-2)] font-mono">{{ str($explain['sql'])->limit(180) }}</div>
|
||||
|
||||
@if($explain['error'])
|
||||
<flux:badge color="amber" size="sm">{{ $explain['error'] }}</flux:badge>
|
||||
@elseif($explain['plan'] === [])
|
||||
<flux:text class="text-sm text-zinc-500">{{ __('Kein Explain-Plan zurückgegeben.') }}</flux:text>
|
||||
@if ($explain['error'])
|
||||
<span class="badge warn dot">{{ $explain['error'] }}</span>
|
||||
@elseif ($explain['plan'] === [])
|
||||
<p class="text-[12px] text-[color:var(--color-ink-3)] m-0">{{ __('Kein Explain-Plan zurückgegeben.') }}</p>
|
||||
@else
|
||||
<div class="overflow-x-auto">
|
||||
<table class="w-full text-left text-xs">
|
||||
<thead class="border-b border-zinc-200 text-zinc-500 dark:border-zinc-700 dark:text-zinc-400">
|
||||
<div class="overflow-x-auto rounded-[5px] border border-[color:var(--color-bg-rule)]">
|
||||
<table class="w-full text-left text-[11.5px]">
|
||||
<thead class="border-b border-[color:var(--color-bg-rule)] bg-[color:var(--color-bg-elev)] text-[10.5px] uppercase tracking-[0.5px] text-[color:var(--color-ink-3)]">
|
||||
<tr>
|
||||
@foreach(array_keys($explain['plan'][0]) as $column)
|
||||
<th class="px-3 py-2 font-medium">{{ $column }}</th>
|
||||
@foreach (array_keys($explain['plan'][0]) as $column)
|
||||
<th class="px-3 py-2 font-semibold">{{ $column }}</th>
|
||||
@endforeach
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($explain['plan'] as $planRow)
|
||||
<tr class="border-b border-zinc-100 dark:border-zinc-800">
|
||||
@foreach($planRow as $value)
|
||||
<td class="px-3 py-2 font-mono">{{ is_scalar($value) || $value === null ? (string) $value : json_encode($value) }}</td>
|
||||
@foreach ($explain['plan'] as $planRow)
|
||||
<tr class="border-b border-[color:var(--color-bg-rule)] last:border-b-0">
|
||||
@foreach ($planRow as $value)
|
||||
<td class="px-3 py-2 font-mono text-[color:var(--color-ink-2)]">{{ is_scalar($value) || $value === null ? (string) $value : json_encode($value) }}</td>
|
||||
@endforeach
|
||||
</tr>
|
||||
@endforeach
|
||||
|
|
@ -253,8 +273,8 @@ new #[Layout('components.layouts.app'), Title('Performance Reports')] class exte
|
|||
@endif
|
||||
</div>
|
||||
@empty
|
||||
<div class="py-8 text-center text-sm text-zinc-500">{{ __('Keine Slow Queries für EXPLAIN vorhanden.') }}</div>
|
||||
<div class="py-8 text-center text-[12px] text-[color:var(--color-ink-3)]">{{ __('Keine Slow Queries für EXPLAIN vorhanden.') }}</div>
|
||||
@endforelse
|
||||
</div>
|
||||
</flux:card>
|
||||
</article>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue