subcategory.blade.php 443 Bytes
Newer Older
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
@extends('product-public::layout')

@section('content')

Listado de entradas
<p>
	Categoria local:
	{{$category}}
</p>

<p>
	Subcategoria local
	{{$subcategory}}
</p>

<p>
	Categorias:
	{{$categories}}
</p>

<p>
	Subcategorias:
	{{$categories}}
</p>	

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

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


<p>
	Paginacion:

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