You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.9 KiB
41 lines
1.9 KiB
<div class="p-4" wire:poll.750ms>
|
|
<h1 class="text-2xl font-bold mb-4">История обработок</h1>
|
|
<table class="min-w-full border-collapse">
|
|
<thead>
|
|
<tr class="border-b">
|
|
<th class="p-2 text-left">ID</th>
|
|
<th class="p-2 text-left">Изображения</th>
|
|
<th class="p-2 text-left">Step файл</th>
|
|
<th class="p-2 text-left">Время начала</th>
|
|
<th class="p-2 text-left">Время окончания</th>
|
|
<th class="p-2 text-left">Обработано</th>
|
|
<th class="p-2 text-left">Затраты времени (сек)</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($histories as $h)
|
|
<tr class="border-b">
|
|
<td class="p-2">{{ $h->id }}</td>
|
|
<td class="p-2">
|
|
@foreach($h->images as $img)
|
|
<div>{{ $img['original_name'] }} ({{ $img['path'] }})</div>
|
|
@endforeach
|
|
</td>
|
|
<td class="p-2">{{ $h->step_file_name }}</td>
|
|
<td class="p-2">{{ $h->started_at }}</td>
|
|
<td class="p-2">{{ $h->finished_at }}</td>
|
|
<td class="p-2">{{ $h->processed_count }}/3</td>
|
|
<td class="p-2">
|
|
@if($h->stages_timing)
|
|
Очередь: {{ $h->stages_timing['queue_wait_time'] ?? 'N/A' }}<br>
|
|
Загрузка: {{ $h->stages_timing['upload_time'] ?? 'N/A' }}<br>
|
|
Обработка: {{ $h->stages_timing['processing_time'] ?? 'N/A' }}<br>
|
|
Сохранение: {{ $h->stages_timing['saving_time'] ?? 'N/A' }}<br>
|
|
@endif
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|