Show packet contents for nodes

This commit is contained in:
2023-07-16 00:41:36 +10:00
parent a3302b4012
commit a8f76aec31
5 changed files with 142 additions and 4 deletions

View File

@@ -435,7 +435,7 @@
<tbody>
@foreach ($x->groupBy('sent_pkt') as $oo)
<tr>
<td>{{ $oo->first()->sent_pkt }}</td>
<td class="packet">{{ $oo->first()->sent_pkt }}</td>
<td>{{ $oo->count() }}</td>
<td>{{ $oo->first()->sent_at }}</td>
</tr>
@@ -470,7 +470,7 @@
<tbody>
@foreach ($x->groupBy('sent_pkt') as $oo)
<tr>
<td>{{ $oo->first()->sent_pkt }}</td>
<td class="packet">{{ $oo->first()->sent_pkt }}</td>
<td>{{ $oo->count() }}</td>
<td>{{ $oo->first()->sent_at }}</td>
</tr>
@@ -505,7 +505,7 @@
<tbody>
@foreach ($x->groupBy('recv_pkt') as $oo)
<tr>
<td>{{ $oo->first()->recv_pkt }}</td>
<td class="packet">{{ $oo->first()->recv_pkt }}</td>
<td>{{ $oo->count() }}</td>
<td>{{ $oo->first()->created_at }}</td>
</tr>
@@ -540,7 +540,7 @@
<tbody>
@foreach ($x->groupBy('recv_pkt') as $oo)
<tr>
<td>{{ $oo->first()->recv_pkt }}</td>
<td class="packet">{{ $oo->first()->recv_pkt }}</td>
<td>{{ $oo->count() }}</td>
<td>{{ $oo->first()->created_at }}</td>
</tr>
@@ -561,6 +561,7 @@
@endif
</div>
@include('widgets.modal_packet')
@include('widgets.modal_purge')
@endsection