12-05-2026 Frontend dev
This commit is contained in:
parent
405df0a122
commit
5b8bdf4182
779 changed files with 480564 additions and 6241 deletions
|
|
@ -0,0 +1,28 @@
|
|||
<flux:table>
|
||||
<flux:table.columns>
|
||||
<flux:table.column>{{ $label }}</flux:table.column>
|
||||
<flux:table.column>{{ __('Requests') }}</flux:table.column>
|
||||
<flux:table.column>{{ __('Ø Dauer') }}</flux:table.column>
|
||||
<flux:table.column>{{ __('Max. Dauer') }}</flux:table.column>
|
||||
<flux:table.column>{{ __('Ø DB') }}</flux:table.column>
|
||||
<flux:table.column>{{ __('Queries') }}</flux:table.column>
|
||||
</flux:table.columns>
|
||||
<flux:table.rows>
|
||||
@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.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>
|
||||
</flux:table.cell>
|
||||
</flux:table.row>
|
||||
@endforelse
|
||||
</flux:table.rows>
|
||||
</flux:table>
|
||||
Loading…
Add table
Add a link
Reference in a new issue