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
eb4aed33
Commit
eb4aed33
authored
Jul 30, 2018
by
Francisco Salazar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
config file
parent
319a9b7d
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
32 additions
and
11 deletions
+32
-11
README.md
README.md
+6
-0
ProductResourceServiceProvider.php
src/ProductResourceServiceProvider.php
+4
-2
product_resources.php
src/config/product_resources.php
+13
-0
ProductController.php
src/controllers/ProductController.php
+4
-4
routes.php
src/routes.php
+2
-2
autoload_psr4.php
vendor/composer/autoload_psr4.php
+1
-1
autoload_static.php
vendor/composer/autoload_static.php
+2
-2
No files found.
README.md
View file @
eb4aed33
...
@@ -37,6 +37,12 @@ public function productsResource()
...
@@ -37,6 +37,12 @@ public function productsResource()
php
artisan
vendor
:
publish
--
provider
=
"Onestartup\ProductResource\ProductResourceServiceProvider"
php
artisan
vendor
:
publish
--
provider
=
"Onestartup\ProductResource\ProductResourceServiceProvider"
```
```
-
run command for publish config file
```
php
php
artisan
vendor
:
publish
--
tag
=
config
```
-
run serv
-
run serv
```
php
```
php
...
...
src/ProductResourceServiceProvider.php
View file @
eb4aed33
...
@@ -34,7 +34,9 @@ class ProductResourceServiceProvider extends ServiceProvider
...
@@ -34,7 +34,9 @@ class ProductResourceServiceProvider extends ServiceProvider
$this
->
publishes
([
$this
->
publishes
([
__DIR__
.
'/assets'
=>
public_path
(
'vendor/onestartup/product_resource/assets'
),
__DIR__
.
'/assets'
=>
public_path
(
'vendor/onestartup/product_resource/assets'
),
],
'public'
);
],
'public'
);
$this
->
publishes
([
__DIR__
.
'/config/product_resources.php'
=>
config_path
(
'product_resources.php'
),
],
'config'
);
}
}
...
@@ -50,6 +52,6 @@ class ProductResourceServiceProvider extends ServiceProvider
...
@@ -50,6 +52,6 @@ class ProductResourceServiceProvider extends ServiceProvider
$this
->
app
->
make
(
'Onestartup\ProductResource\Controller\CategoryController'
);
$this
->
app
->
make
(
'Onestartup\ProductResource\Controller\CategoryController'
);
$this
->
app
->
make
(
'Onestartup\ProductResource\Controller\ProductController'
);
$this
->
app
->
make
(
'Onestartup\ProductResource\Controller\ProductController'
);
$this
->
app
->
make
(
'Onestartup\ProductResource\Controller\ExtraFieldController'
);
$this
->
app
->
make
(
'Onestartup\ProductResource\Controller\ExtraFieldController'
);
$this
->
mergeConfigFrom
(
__DIR__
.
'/config/product_resources.php'
,
'product_resources'
);
}
}
}
}
src/config/product_resources.php
0 → 100644
View file @
eb4aed33
<?php
return
[
"slug_product_resource"
=>
"recursos"
,
"product-index"
=>
[
"pagination"
=>
12
,
"otros"
=>
3
],
"product-show"
=>
[
"otros"
=>
3
],
];
\ No newline at end of file
src/controllers/ProductController.php
View file @
eb4aed33
...
@@ -16,12 +16,12 @@ class ProductController extends Controller
...
@@ -16,12 +16,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
(
12
);
$products
=
$category
->
products
()
->
where
(
'active'
,
true
)
->
paginate
(
config
(
"product_resources.product-index.pagination"
)
);
}
else
{
}
else
{
$products
=
Product
::
where
(
'active'
,
true
)
->
paginate
(
12
);
$products
=
Product
::
where
(
'active'
,
true
)
->
paginate
(
config
(
"product_resources.product-index.pagination"
)
);
}
}
$otros
=
Product
::
where
(
'active'
,
true
)
->
inRandomOrder
()
->
take
(
3
)
->
get
();
$otros
=
Product
::
where
(
'active'
,
true
)
->
inRandomOrder
()
->
take
(
config
(
"product_resources.product-index.otros"
)
)
->
get
();
$categories
=
Category
::
where
(
'active'
,
true
)
->
get
();
$categories
=
Category
::
where
(
'active'
,
true
)
->
get
();
//$products;
//$products;
...
@@ -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
)
->
inRandomOrder
()
->
take
(
config
(
"product_resources.product-show.otros"
)
)
->
get
();
$categories
=
Category
::
all
();
$categories
=
Category
::
all
();
...
...
src/routes.php
View file @
eb4aed33
...
@@ -32,6 +32,6 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
...
@@ -32,6 +32,6 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
});
});
Route
::
group
([
'middleware'
=>
[
'web'
]],
function
(){
Route
::
group
([
'middleware'
=>
[
'web'
]],
function
(){
Route
::
get
(
env
(
'SLUG_PRODUCTSRESOURCE'
)
.
'/{slug}'
,
'Onestartup\ProductResource\Controller\ProductController@show'
)
->
name
(
'show.product_resource'
);
Route
::
get
(
config
(
"product_resources.slug_product_resource"
)
.
'/{slug}'
,
'Onestartup\ProductResource\Controller\ProductController@show'
)
->
name
(
'show.product_resource'
);
Route
::
get
(
env
(
'SLUG_PRODUCTSRESOURCE'
),
'Onestartup\ProductResource\Controller\ProductController@index'
)
->
name
(
'main.product_resource'
);
Route
::
get
(
config
(
"product_resources.slug_product_resource"
),
'Onestartup\ProductResource\Controller\ProductController@index'
)
->
name
(
'main.product_resource'
);
});
});
vendor/composer/autoload_psr4.php
View file @
eb4aed33
...
@@ -6,5 +6,5 @@ $vendorDir = dirname(dirname(__FILE__));
...
@@ -6,5 +6,5 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir
=
dirname
(
$vendorDir
);
$baseDir
=
dirname
(
$vendorDir
);
return
array
(
return
array
(
'Onestartup\\Product\\'
=>
array
(
$baseDir
.
'/src'
),
'Onestartup\\Product
Resource
\\'
=>
array
(
$baseDir
.
'/src'
),
);
);
vendor/composer/autoload_static.php
View file @
eb4aed33
...
@@ -9,12 +9,12 @@ class ComposerStaticInit7173633b0cb420d97a2e8a09a0590ba0
...
@@ -9,12 +9,12 @@ class ComposerStaticInit7173633b0cb420d97a2e8a09a0590ba0
public
static
$prefixLengthsPsr4
=
array
(
public
static
$prefixLengthsPsr4
=
array
(
'O'
=>
'O'
=>
array
(
array
(
'Onestartup\\Product
\\'
=>
19
,
'Onestartup\\Product
Resource\\'
=>
27
,
),
),
);
);
public
static
$prefixDirsPsr4
=
array
(
public
static
$prefixDirsPsr4
=
array
(
'Onestartup\\Product\\'
=>
'Onestartup\\Product
Resource
\\'
=>
array
(
array
(
0
=>
__DIR__
.
'/../..'
.
'/src'
,
0
=>
__DIR__
.
'/../..'
.
'/src'
,
),
),
...
...
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