Ver Mensaje Individual
  #6 (permalink)  
Antiguo 02/12/2018, 16:43
rafret
 
Fecha de Ingreso: junio-2010
Mensajes: 221
Antigüedad: 13 años, 10 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