Files
Credit-Zombies/resources/views/partials/iq_call_histories.blade.php
2026-06-24 18:29:01 +06:00

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>