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
75593d2c
Commit
75593d2c
authored
Jun 20, 2018
by
Angel MAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vista de categorias
parent
5046b78a
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
48 additions
and
4 deletions
+48
-4
ProductController.php
src/controllers/ProductController.php
+15
-0
RequestProduct.php
src/requests/RequestProduct.php
+0
-2
routes.php
src/routes.php
+3
-0
fields.blade.php
src/views/product/fields.blade.php
+2
-2
category.blade.php
src/views/public/category.blade.php
+28
-0
No files found.
src/controllers/ProductController.php
View file @
75593d2c
...
@@ -56,4 +56,19 @@ class ProductController extends Controller
...
@@ -56,4 +56,19 @@ class ProductController extends Controller
}
}
public
function
byCategory
(
$category_slug
)
{
$category
=
Category
::
where
(
'slug'
,
$category_slug
)
->
first
();
$products
=
$category
->
products
()
->
where
(
'active'
,
true
)
->
paginate
(
15
);
$otros
=
Product
::
where
(
'active'
,
true
)
->
inRandomOrder
()
->
take
(
3
)
->
get
();
$categories
=
Category
::
where
(
'active'
,
true
)
->
get
();
return
view
(
'product-public::category'
)
->
with
(
'categories'
,
$categories
)
->
with
(
'otros'
,
$otros
)
->
with
(
'products'
,
$products
);
}
}
}
src/requests/RequestProduct.php
View file @
75593d2c
...
@@ -27,8 +27,6 @@ class RequestProduct extends FormRequest
...
@@ -27,8 +27,6 @@ class RequestProduct extends FormRequest
'name'
=>
'required|max:355'
,
'name'
=>
'required|max:355'
,
'slug'
=>
'required|max:455'
,
'slug'
=>
'required|max:455'
,
'description'
=>
'required'
,
'description'
=>
'required'
,
'specifications'
=>
'required'
,
'features'
=>
'required'
,
'active'
=>
'required|boolean'
,
'active'
=>
'required|boolean'
,
'publication_date'
=>
'required'
,
'publication_date'
=>
'required'
,
'extra1'
=>
'max:455'
,
'extra1'
=>
'max:455'
,
...
...
src/routes.php
View file @
75593d2c
...
@@ -27,4 +27,7 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
...
@@ -27,4 +27,7 @@ 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
(
env
(
'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
(
env
(
'SLUG_PRODUCTS'
),
'Onestartup\Product\Controller\ProductController@index'
)
->
name
(
'main.product'
);
Route
::
get
(
env
(
'SLUG_PRODUCTS_CATEGORY'
)
.
'/{slug_category}'
,
'Onestartup\Product\Controller\ProductController@byCategory'
)
->
name
(
'category.product'
);
});
});
src/views/product/fields.blade.php
View file @
75593d2c
...
@@ -169,14 +169,14 @@
...
@@ -169,14 +169,14 @@
</div>
</div>
<div
class=
"col-md-6"
>
<div
class=
"col-md-6"
>
{!! Form::label('features', 'Características', ['class'=>'control-label'])!!}
{!! Form::label('features', 'Características', ['class'=>'control-label'])!!}
{!! Form::textarea('features', null, ["class"=>"form-control",
"required"=>"required",
'id'=>'body', 'rows'=>"30", 'cols'=>"80"]) !!}
{!! Form::textarea('features', null, ["class"=>"form-control", 'id'=>'body', 'rows'=>"30", 'cols'=>"80"]) !!}
</div>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-md-6"
>
<div
class=
"col-md-6"
>
{!! Form::label('specifications', 'Información adicional', ['class'=>'control-label'])!!}
{!! Form::label('specifications', 'Información adicional', ['class'=>'control-label'])!!}
{!! Form::textarea('specifications', null, ["class"=>"form-control",
"required"=>"required",
'id'=>'body', 'rows'=>"30", 'cols'=>"80"]) !!}
{!! Form::textarea('specifications', null, ["class"=>"form-control", 'id'=>'body', 'rows'=>"30", 'cols'=>"80"]) !!}
</div>
</div>
</div>
</div>
...
...
src/views/public/category.blade.php
0 → 100644
View file @
75593d2c
@
extends
(
'product-public::layout'
)
@
section
(
'content'
)
Listado
de
entradas
<
p
>
Categorias
:
{{
$categories
}}
</
p
>
<
p
>
Productos
todas
{{
$products
}}
</
p
>
<
p
>
Productos
al
azar
{{
$otros
}}
</
p
>
<
p
>
Paginacion
:
{
!!
$products
->
links
()
!!
}
</
p
>
@
endsection
\ No newline at end of file
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