33 lines
711 B
PHP
33 lines
711 B
PHP
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Id</th>
|
|
<th>IP</th>
|
|
<th>Port</th>
|
|
<th>Page</th>
|
|
<th>Status Code</th>
|
|
<th>Status</th>
|
|
<th>Created On</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
@foreach ($data as $obj)
|
|
|
|
<tr>
|
|
<td>{{ $obj['id'] }}</td>
|
|
<td>{{$obj['ip']}}</td>
|
|
<td>{{$obj['port']}}</td>
|
|
<td>{{$obj['page']}}</td>
|
|
<td>{{$obj['error_code']}}</td>
|
|
<td>{{$obj['status']}}</td>
|
|
<td>{{$obj['created_at']}}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
|