trove/resources/views/admin/index.blade.php

23 lines
560 B
PHP
Raw Normal View History

<x-layout>
<div>
<h1>Instances</h1>
<table>
<thead>
<tr>
<th>Instance</th>
<th>Last polled at</th>
</tr>
</thead>
<tbody>
@foreach($instances as $instance)
<tr>
<td>{{ $instance->url }}</td>
<td>{{ $instance->last_polled_at }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</x-layout>