inital commit

This commit is contained in:
2026-06-24 18:29:01 +06:00
commit f401802bf7
3918 changed files with 553085 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>