Fix last packet transfers shown, added file transfers

This commit is contained in:
2023-07-19 15:16:25 +10:00
parent f4fc6c24a4
commit 39605af693
8 changed files with 249 additions and 37 deletions

View File

@@ -0,0 +1,24 @@
@if($f->count())
<table class="table monotable">
<thead>
<tr>
<th colspan="3">Files</th>
</tr>
<tr>
<th>Origin</th>
<th>Name</th>
<th>Date</th>
</tr>
</thead>
<tbody>
@foreach ($f as $oo)
<tr>
<td>{{ $oo->fftn->ftn }}</td>
<td>{{ $oo->name }}</td>
<td>{{ $oo->datetime }}</td>
</tr>
@endforeach
</tbody>
</table>
@endif