Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Tabla HTMl -->
- <table class="table table-striped table-bordered table-hover">
- <thead>
- <tr>
- <th>Nombre</th>
- <th>Precio</th>
- <th>Stock</th>
- <th>Imagen</th>
- <th>Acciones</th>
- </tr>
- </thead>
- <tbody>
- @foreach($bicicletas as $bic)
- <tr>
- <td class="v-align-middle">{{$bic->nombre}}</td>
- <td class="v-align-middle">{{$bic->precio}}</td>
- <td class="v-align-middle">{{$bic->stock}}</td>
- <td class="v-align-middle">
- <img src="../uploads/{{$bic->imagenesbicicletas()->first()->nombre}}" width="30" class="img-responsive">
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- <!-- Mostramos todas las imágenes pertenecientes a un registro (Página detalles) -->
- @foreach($imagenes as $img)
- <a href="../../../uploads/{{ $img->nombre }}">
- <img src="../../../uploads/{{ $img->nombre }}" width="200" class="img-fluid">
- </a>
- @endforeach
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement