You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
topnotch_website/resources/views/partials/management/index/service-files.blade.php

32 lines
1003 B
PHTML

3 months ago
<div class="tab-pane {{$tab == 'files' ? 'active' : ''}}" id="files" role="tabpanel"
aria-labelledby="files-tab">
2 months ago
<div class="row justify-content-center">
<div class="col-8">
<table class="table table-sm table-striped table-hover">
<thead>
<th>Code</th>
<th>Name</th>
<th>Width</th>
<th>Height</th>
<th>Setup Number</th>
</thead>
<tbody>
@foreach($serviceFiles as $file)
<tr>
<td>{{$file->code}}</td>
<td>{{$file->name}}</td>
<td>{{$file->width}}</td>
<td>{{$file->height}}</td>
<td>{{$file->setup_number}}</td>
</tr>
@endforeach
</tbody>
</table>
{{$serviceFiles->links()}}
</div>
</div>
3 months ago
</div>