initial commit

This commit is contained in:
2026-06-29 13:00:18 +06:00
commit f2aea74471
3931 changed files with 562423 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<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>