Commit 95af777a by Francisco Salazar

order in products

parent 917780d5
...@@ -4,10 +4,12 @@ return [ ...@@ -4,10 +4,12 @@ return [
"slug_products" => "productos", "slug_products" => "productos",
"slug_category" => "categoria", "slug_category" => "categoria",
"slug_subcategory" => "subcategoria", "slug_subcategory" => "subcategoria",
"gallery-images" => true,
"product-index" => [ "product-index" => [
"pagination" => 25, "pagination" => 25,
"otros" => 6, "otros" => 6,
"order" => 'desc'
], ],
"product-show" => [ "product-show" => [
"otros" => 6, "otros" => 6,
......
...@@ -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)->orderBy('created_at','desc')->paginate(config("product.product-index.")); $products = $category->products()->where('active', true)->orderBy('created_at',config("product.product-index.order"))->paginate(config("product.product-index.pagination"));
} else { } else {
$products = Product::where('active', true)->orderBy('created_at','desc')->paginate(config("product.product-index.pagination")); $products = Product::where('active', true)->orderBy('created_at',config("product.product-index.order"))->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();
......
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