![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
02/12/2018, 16:43
|
| | Fecha de Ingreso: junio-2010
Mensajes: 221
Antigüedad: 14 años, 7 meses Puntos: 3 | |
Respuesta: Error con ruta en framwork laravel Cita: @extends("layouts.app");
@section("content")
<div class="big-padding text-center blue-grey white-text">
<hi>Productos</hi>
</div>
<div class="container">
<table class="table table-bordered">
<thead>
<tr>
<td>ID</td>
<td>Título</td>
<td>Descripción</td>
<td>Precio</td>
<td>Acciones</td>
</tr>
</thead>
<tbody>
@foreach ($products as $product)
<tr>
<td>{{ $product->id }}</td>
<td>{{ $product->title }}</td>
<td>{{ $product->description }}</td>
<td>{{ $product->pricing }}</td>
<td>Acciones</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection |