initial commit
This commit is contained in:
32
resources/views/partials/iq_call_histories.blade.php
Normal file
32
resources/views/partials/iq_call_histories.blade.php
Normal 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>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user