Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
onestartup-product
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
Angel Martin
onestartup-product
Commits
0309860f
Commit
0309860f
authored
Jul 27, 2018
by
Francisco Salazar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
config file for products
parent
17432700
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
13 deletions
+42
-13
ProductServiceProvider.php
src/ProductServiceProvider.php
+6
-1
product.php
src/config/product.php
+24
-0
ProductController.php
src/controllers/ProductController.php
+8
-8
routes.php
src/routes.php
+4
-4
No files found.
src/ProductServiceProvider.php
View file @
0309860f
...
@@ -32,6 +32,11 @@ class ProductServiceProvider extends ServiceProvider
...
@@ -32,6 +32,11 @@ class ProductServiceProvider extends ServiceProvider
__DIR__
.
'/views/public'
=>
resource_path
(
'views/vendor/onestartup/product'
),
__DIR__
.
'/views/public'
=>
resource_path
(
'views/vendor/onestartup/product'
),
]);
]);
// Allow your user to publish the config
$this
->
publishes
([
__DIR__
.
'/config/product.php'
=>
config_path
(
'product.php'
),
],
'config'
);
}
}
...
@@ -46,6 +51,6 @@ class ProductServiceProvider extends ServiceProvider
...
@@ -46,6 +51,6 @@ class ProductServiceProvider extends ServiceProvider
$this
->
app
->
make
(
'Onestartup\Product\Controller\AdminProductController'
);
$this
->
app
->
make
(
'Onestartup\Product\Controller\AdminProductController'
);
$this
->
app
->
make
(
'Onestartup\Product\Controller\CategoryController'
);
$this
->
app
->
make
(
'Onestartup\Product\Controller\CategoryController'
);
$this
->
app
->
make
(
'Onestartup\Product\Controller\ProductController'
);
$this
->
app
->
make
(
'Onestartup\Product\Controller\ProductController'
);
$this
->
mergeConfigFrom
(
__DIR__
.
'/config/product.php'
,
'product'
);
}
}
}
}
src/config/product.php
0 → 100644
View file @
0309860f
<?php
return
[
"slug_products"
=>
"productos"
,
"slug_category"
=>
"categoria"
,
"slug_subcategory"
=>
"subcategoria"
,
"product-index"
=>
[
"pagination"
=>
25
,
"otros"
=>
6
,
],
"product-show"
=>
[
"otros"
=>
6
,
],
"product-bycategory"
=>
[
"pagination"
=>
15
,
"otros"
=>
6
],
"product-bysubcategory"
=>
[
"pagination"
=>
15
,
"otros"
=>
6
],
];
\ No newline at end of file
src/controllers/ProductController.php
View file @
0309860f
...
@@ -17,12 +17,12 @@ class ProductController extends Controller
...
@@ -17,12 +17,12 @@ 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
(
15
);
$products
=
$category
->
products
()
->
where
(
'active'
,
true
)
->
paginate
(
config
(
"product.product-index."
)
);
}
else
{
}
else
{
$products
=
Product
::
where
(
'active'
,
true
)
->
paginate
(
25
);
$products
=
Product
::
where
(
'active'
,
true
)
->
paginate
(
config
(
"product.product-index.pagination"
)
);
}
}
$otros
=
Product
::
where
(
'active'
,
true
)
->
inRandomOrder
()
->
take
(
3
)
->
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
();
return
view
(
'product-public::list'
)
return
view
(
'product-public::list'
)
...
@@ -36,7 +36,7 @@ class ProductController extends Controller
...
@@ -36,7 +36,7 @@ class ProductController extends Controller
{
{
$product
=
Product
::
where
(
'slug'
,
$slug
)
->
first
();
$product
=
Product
::
where
(
'slug'
,
$slug
)
->
first
();
$otros
=
$product
->
category
->
products
()
->
where
(
'active'
,
true
)
->
take
(
3
)
->
get
();
$otros
=
$product
->
category
->
products
()
->
where
(
'active'
,
true
)
->
where
(
"id"
,
"<>"
,
$product
->
id
)
->
inRandomOrder
()
->
take
(
config
(
"product.product-show.otros"
)
)
->
get
();
$categories
=
Category
::
all
();
$categories
=
Category
::
all
();
...
@@ -60,9 +60,9 @@ class ProductController extends Controller
...
@@ -60,9 +60,9 @@ class ProductController extends Controller
public
function
byCategory
(
$category_slug
)
public
function
byCategory
(
$category_slug
)
{
{
$category
=
Category
::
where
(
'slug'
,
$category_slug
)
->
first
();
$category
=
Category
::
where
(
'slug'
,
$category_slug
)
->
first
();
$products
=
$category
->
products
()
->
where
(
'active'
,
true
)
->
paginate
(
15
);
$products
=
$category
->
products
()
->
where
(
'active'
,
true
)
->
paginate
(
config
(
"product.product-bycategory.pagination"
)
);
$otros
=
Product
::
where
(
'active'
,
true
)
->
inRandomOrder
()
->
take
(
3
)
->
get
();
$otros
=
Product
::
where
(
'active'
,
true
)
->
inRandomOrder
()
->
take
(
config
(
"product.product-bycategory.otros"
)
)
->
get
();
$categories
=
Category
::
where
(
'active'
,
true
)
->
get
();
$categories
=
Category
::
where
(
'active'
,
true
)
->
get
();
return
view
(
'product-public::category'
)
return
view
(
'product-public::category'
)
...
@@ -77,9 +77,9 @@ class ProductController extends Controller
...
@@ -77,9 +77,9 @@ class ProductController extends Controller
//return $category_slug . " " .$subcategory_slug;
//return $category_slug . " " .$subcategory_slug;
$category
=
Category
::
where
(
'slug'
,
$category_slug
)
->
first
();
$category
=
Category
::
where
(
'slug'
,
$category_slug
)
->
first
();
$subcategory
=
$category
->
subcategories
->
where
(
'slug'
,
$subcategory_slug
)
->
first
();
$subcategory
=
$category
->
subcategories
->
where
(
'slug'
,
$subcategory_slug
)
->
first
();
$products
=
$subcategory
->
products
()
->
where
(
'active'
,
true
)
->
paginate
(
15
);
$products
=
$subcategory
->
products
()
->
where
(
'active'
,
true
)
->
paginate
(
config
(
"product.product-bysubcategory.pagination"
)
);
$otros
=
Product
::
where
(
'active'
,
true
)
->
inRandomOrder
()
->
take
(
3
)
->
get
();
$otros
=
Product
::
where
(
'active'
,
true
)
->
inRandomOrder
()
->
take
(
config
(
"product.product-bycategory.otros"
)
)
->
get
();
$categories
=
Category
::
where
(
'active'
,
true
)
->
get
();
$categories
=
Category
::
where
(
'active'
,
true
)
->
get
();
$subcategories
=
$category
->
subcategories
()
->
where
(
'active'
,
true
)
->
get
();
$subcategories
=
$category
->
subcategories
()
->
where
(
'active'
,
true
)
->
get
();
...
...
src/routes.php
View file @
0309860f
...
@@ -35,15 +35,15 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
...
@@ -35,15 +35,15 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
});
});
Route
::
group
([
'middleware'
=>
[
'web'
]],
function
(){
Route
::
group
([
'middleware'
=>
[
'web'
]],
function
(){
Route
::
get
(
env
(
'SLUG_PRODUCTS'
)
.
'/{slug}'
,
'Onestartup\Product\Controller\ProductController@show'
)
->
name
(
'show.product'
);
Route
::
get
(
config
(
"product.slug_products"
)
.
'/{slug}'
,
'Onestartup\Product\Controller\ProductController@show'
)
->
name
(
'show.product'
);
Route
::
get
(
env
(
'SLUG_PRODUCTS'
),
'Onestartup\Product\Controller\ProductController@index'
)
->
name
(
'main.product'
);
Route
::
get
(
config
(
"product.slug_products"
),
'Onestartup\Product\Controller\ProductController@index'
)
->
name
(
'main.product'
);
Route
::
get
(
env
(
'SLUG_PRODUCTS_CATEGORY'
)
.
'/{slug_category}'
,
Route
::
get
(
config
(
"product.slug_category"
)
.
'/{slug_category}'
,
'Onestartup\Product\Controller\ProductController@byCategory'
)
'Onestartup\Product\Controller\ProductController@byCategory'
)
->
name
(
'category.product'
);
->
name
(
'category.product'
);
Route
::
get
(
env
(
'SLUG_PRODUCTS_CATEGORY'
)
.
'/{slug_category}/{slug_subcategory}'
,
Route
::
get
(
config
(
"product.slug_category"
)
.
'/{slug_category}/{slug_subcategory}'
,
'Onestartup\Product\Controller\ProductController@bySubCategory'
)
'Onestartup\Product\Controller\ProductController@bySubCategory'
)
->
name
(
'subcategory.product'
);
->
name
(
'subcategory.product'
);
});
});
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