Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
onestartup-product_resource
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Francisco Salazar
onestartup-product_resource
Commits
30b4afd3
Commit
30b4afd3
authored
Jun 25, 2018
by
Pancholin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reparacion en datatables de product y paginacion a 12
parent
0fdaee3d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
AdminProductController.php
src/controllers/AdminProductController.php
+1
-1
ProductController.php
src/controllers/ProductController.php
+2
-2
No files found.
src/controllers/AdminProductController.php
View file @
30b4afd3
...
...
@@ -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>"
;
...
...
src/controllers/ProductController.php
View file @
30b4afd3
...
...
@@ -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
(
1
5
);
$products
=
$category
->
products
()
->
where
(
'active'
,
true
)
->
paginate
(
1
2
);
}
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
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment