Rebrand Hub+Flux
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run

This commit is contained in:
Kevin Adametz 2026-05-20 15:44:15 +02:00
parent 0a3e52d603
commit 9b47296cea
130 changed files with 9357 additions and 3345 deletions

View file

@ -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