<div class="tab-pane {{$tab == 'files' ? 'active' : ''}}" id="files" role="tabpanel"
        aria-labelledby="files-tab">
    <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>

</div>