Commit 30b4afd3 by Pancholin

reparacion en datatables de product y paginacion a 12

parent 0fdaee3d
......@@ -150,7 +150,7 @@ class AdminProductController extends Controller
"<button class='btn btn-danger btn-xs button-mb' onclick='return confirm();' type='submit'>".
"<i class='fas fa-trash-alt icon-special-size'></i>Eliminar</button>".
"</form>".
"<a href='".route('show.product', $product->slug)."' class='btn btn-xs info button-mb' target='new'>".
"<a href='".route('show.product_resource', $product->slug)."' class='btn btn-xs info button-mb' target='new'>".
"<i class='fas fa-eye icon-special-size'></i>Ver</a>".
"<br><a href='".route('admin.product_resources.products.edit', $product->id)."' class='btn btn-xs accent mb0'>".
"<i class='fas fa-edit icon-special-size'></i>Editar</a>";
......
......@@ -16,10 +16,10 @@ class ProductController extends Controller
if(isset($request->category)){
$category = Category::where('slug', $request->category)->first();
$products = $category->products()->where('active', true)->paginate(15);
$products = $category->products()->where('active', true)->paginate(12);
} else {
$products = Product::where('active', true)->paginate(25);
$products = Product::where('active', true)->paginate(12);
}
$otros = Product::where('active', true)->inRandomOrder()->take(3)->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