Removed unnessary controller functions that just call a view, HTML/CSS consistency updates
This commit is contained in:
24
resources/views/widgets/file.blade.php
Normal file
24
resources/views/widgets/file.blade.php
Normal 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
|
Reference in New Issue
Block a user