desa_web_laravel_practica/resources/views/catalogo/index.blade.php

18 lines
426 B
PHP

<h1>Catálogo de Productos</h1>
<a href="{{ route('catalogo.crear') }}">Crear nuevo producto</a>
<table>
<thead>
<tr>
<th>Nombre</th>
<th>Precio</th>
</tr>
</thead>
<tbody>
@foreach($productos as $producto)
<tr>
<td>{{ $producto->nombre }}</td>
<td>${{ $producto->precio }}</td>
</tr>
@endforeach
</tbody>
</table>