2026-04-28 18:48:20 +02:00
|
|
|
<x-layout>
|
|
|
|
|
<div>
|
|
|
|
|
<h1>Instances</h1>
|
|
|
|
|
|
|
|
|
|
<table>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Instance</th>
|
|
|
|
|
<th>Last polled at</th>
|
2026-04-28 23:33:32 +02:00
|
|
|
<th>URLs</th>
|
|
|
|
|
<th>Errors</th>
|
2026-04-28 18:48:20 +02:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
@foreach($instances as $instance)
|
|
|
|
|
<tr>
|
|
|
|
|
<td>{{ $instance->url }}</td>
|
|
|
|
|
<td>{{ $instance->last_polled_at }}</td>
|
2026-04-28 23:33:32 +02:00
|
|
|
<td>{{ $instance->pages_count }} URLs</td>
|
|
|
|
|
<td>{{ $instance->failed_pages_count }} errors</td>
|
2026-04-28 18:48:20 +02:00
|
|
|
</tr>
|
|
|
|
|
@endforeach
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</x-layout>
|