Commit 8f7ea1b9 by Francisco Salazar

Merge branch 'master' of bunkrbit.com:bsabbath/onestartup-product

parents 3ce4dd32 614627a1
...@@ -17,10 +17,10 @@ class ProductController extends Controller ...@@ -17,10 +17,10 @@ class ProductController extends Controller
if(isset($request->category)){ if(isset($request->category)){
$category = Category::where('slug', $request->category)->first(); $category = Category::where('slug', $request->category)->first();
$products = $category->products()->where('active', true)->paginate(config("product.product-index.")); $products = $category->products()->where('active', true)->orderBy('created_at','desc')->paginate(config("product.product-index."));
} else { } else {
$products = Product::where('active', true)->paginate(config("product.product-index.pagination")); $products = Product::where('active', true)->orderBy('created_at','desc')->paginate(config("product.product-index.pagination"));
} }
$otros = Product::where('active', true)->inRandomOrder()->take(config("product.product-index.otros"))->get(); $otros = Product::where('active', true)->inRandomOrder()->take(config("product.product-index.otros"))->get();
$categories = Category::where('active', true)->get(); $categories = Category::where('active', true)->get();
......
...@@ -13,6 +13,7 @@ Listado de entradas ...@@ -13,6 +13,7 @@ Listado de entradas
@foreach($products as $product) @foreach($products as $product)
{{$product}} {{$product}}
@endforeach @endforeach
</p> </p>
<p> <p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment