29 lines
808 B
PHP
29 lines
808 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div>
|
|
<h1>Instances</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Instance</th>
|
|
<th>Last polled at</th>
|
|
<th>URLs</th>
|
|
<th>Errors</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($instances as $instance)
|
|
<tr>
|
|
<td>{{ $instance->url }}</td>
|
|
<td>{{ $instance->last_polled_at }}</td>
|
|
<td>{{ $instance->pages_count }} URLs</td>
|
|
<td>{{ $instance->failed_pages_count }} errors</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
@endsection
|
|
|