list.blade.php 318 Bytes
Newer Older
Pancholin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
@extends('product_resource-public::layout')

@section('content')

Listado de entradas
<p>
	Categorias:
	{{$categories}}
</p>

<p>
	Productos todos
	@foreach($products as $product)
		{{$product}}
	@endforeach
</p>

<p>
	Productos al azar
	{{$otros}}
</p>


<p>
	Paginacion:

	{!! $products->links() !!}
</p>
@endsection