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
3c25b478
Commit
3c25b478
authored
Jul 03, 2018
by
Pancholin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ortografia
parent
9eabfbf3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
14 deletions
+14
-14
AdminProductController.php
src/controllers/AdminProductController.php
+4
-4
index.blade.php
src/views/category/index.blade.php
+2
-2
index.blade.php
src/views/extra/index.blade.php
+2
-2
edit.blade.php
src/views/product/edit.blade.php
+3
-3
fields.blade.php
src/views/product/fields.blade.php
+1
-1
index.blade.php
src/views/product/index.blade.php
+2
-2
No files found.
src/controllers/AdminProductController.php
View file @
3c25b478
...
@@ -140,11 +140,11 @@ class AdminProductController extends Controller
...
@@ -140,11 +140,11 @@ class AdminProductController extends Controller
return
return
"<p class='mb0'>Nombre: <b>
$product->name
</b></p>"
.
"<p class='mb0'>Nombre: <b>
$product->name
</b></p>"
.
"<p class='mb0'>Slug: <b>
$product->slug
</b></p>"
.
"<p class='mb0'>Slug: <b>
$product->slug
</b></p>"
.
"<p class='mb0'>Categor
i
a: <b>"
.
$product
->
category
->
name
.
"</b></p>"
.
"<p class='mb0'>Categor
í
a: <b>"
.
$product
->
category
->
name
.
"</b></p>"
.
"<p class='mb0'>Fecha creación: <b>"
.
$product
->
created_at
->
format
(
'd/m/Y'
)
.
"</b></p>"
;
"<p class='mb0'>Fecha
de
creación: <b>"
.
$product
->
created_at
->
format
(
'd/m/Y'
)
.
"</b></p>"
;
})
})
->
addColumn
(
'form'
,
function
(
$product
)
{
->
addColumn
(
'form'
,
function
(
$product
)
{
return
"<form method='POST' action='"
.
route
(
'admin.product_resources.products.destroy'
,
$product
->
id
)
.
"'>"
.
return
"<
center><
form method='POST' action='"
.
route
(
'admin.product_resources.products.destroy'
,
$product
->
id
)
.
"'>"
.
"<input name='_method' type='hidden' value='DELETE' class='has-value'>"
.
"<input name='_method' type='hidden' value='DELETE' class='has-value'>"
.
csrf_field
()
.
csrf_field
()
.
"<button class='btn btn-danger btn-xs button-mb' onclick='return confirm();' type='submit'>"
.
"<button class='btn btn-danger btn-xs button-mb' onclick='return confirm();' type='submit'>"
.
...
@@ -153,7 +153,7 @@ class AdminProductController extends Controller
...
@@ -153,7 +153,7 @@ class AdminProductController extends Controller
"<a href='"
.
route
(
'show.product_resource'
,
$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>"
.
"<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'>"
.
"<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>"
;
"<i class='fas fa-edit icon-special-size'></i>Editar</a>
</center>
"
;
})
})
->
rawColumns
([
'main'
,
'description'
,
'features'
,
'specifications'
,
'form'
])
->
rawColumns
([
'main'
,
'description'
,
'features'
,
'specifications'
,
'form'
])
->
make
();
->
make
();
...
...
src/views/category/index.blade.php
View file @
3c25b478
...
@@ -41,7 +41,7 @@
...
@@ -41,7 +41,7 @@
<div class='box'>
<div class='box'>
<div class='box-header dark'>
<div class='box-header dark'>
<h2>
<h2>
Listado de Categor
i
as de productos
Listado de Categor
í
as de productos
<span>
<span>
<a aria-expanded='false' class='btn btn-xs btn-info button-ml' data-toggle='collapse' href='#agregarCategoria'>
<a aria-expanded='false' class='btn btn-xs btn-info button-ml' data-toggle='collapse' href='#agregarCategoria'>
<i class='fas fa-plus'></i>
<i class='fas fa-plus'></i>
...
@@ -72,7 +72,7 @@
...
@@ -72,7 +72,7 @@
</td>
</td>
<td>
{
{$category->description}
}
</td>
<td>
{
{$category->description}
}
</td>
<td>
{
{$category->products()->count()}
}
</td>
<td>
{
{$category->products()->count()}
}
</td>
<td>
<td
class="
text
-
center
"
>
{!! Form::open(['route'=> ['admin.product_resources.products.destroy',
$category->id
],'method'=>'DELETE'])!!}
{!! Form::open(['route'=> ['admin.product_resources.products.destroy',
$category->id
],'method'=>'DELETE'])!!}
<button class='btn btn-danger btn-xs button-mb' onclick="
return
confirm
(
'¿Estás seguro de eliminar este elemento?'
);
" type='submit'>
<button class='btn btn-danger btn-xs button-mb' onclick="
return
confirm
(
'¿Estás seguro de eliminar este elemento?'
);
" type='submit'>
<i class='fas fa-trash-alt icon-special-size'></i>
<i class='fas fa-trash-alt icon-special-size'></i>
...
...
src/views/extra/index.blade.php
View file @
3c25b478
...
@@ -55,7 +55,7 @@
...
@@ -55,7 +55,7 @@
<table class='table'>
<table class='table'>
<tr>
<tr>
<th>#</th>
<th>#</th>
<th>Informaci
o
n</th>
<th>Informaci
ó
n</th>
<th>Valores</th>
<th>Valores</th>
<th></th>
<th></th>
</tr>
</tr>
...
@@ -69,7 +69,7 @@
...
@@ -69,7 +69,7 @@
Estatus: <b>{{$extra->active ? "
Activo
" : "
Inactivo
"}}</b>
Estatus: <b>{{$extra->active ? "
Activo
" : "
Inactivo
"}}</b>
</td>
</td>
<td> Opciones: <br><b>{{$extra->values != null ?
$extra->values
: "
No
aplica
"}}</b></td>
<td> Opciones: <br><b>{{$extra->values != null ?
$extra->values
: "
No
aplica
"}}</b></td>
<td>
<td
class="
text
-
center
"
>
{!! Form::open(['route'=> ['admin.product_resources.extra-fields.destroy',
$extra->id
],'method'=>'DELETE'])!!}
{!! Form::open(['route'=> ['admin.product_resources.extra-fields.destroy',
$extra->id
],'method'=>'DELETE'])!!}
<button class='btn btn-danger btn-xs button-mb' onclick="
return
confirm
(
'¿Estás seguro de eliminar este elemento?'
);
" type='submit'>
<button class='btn btn-danger btn-xs button-mb' onclick="
return
confirm
(
'¿Estás seguro de eliminar este elemento?'
);
" type='submit'>
<i class='fas fa-trash-alt icon-special-size'></i>
<i class='fas fa-trash-alt icon-special-size'></i>
...
...
src/views/product/edit.blade.php
View file @
3c25b478
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
</
li
>
</
li
>
<
li
class
="
nav
-
item
">
<
li
class
="
nav
-
item
">
<a class="
nav
-
link
block
" href="" data-toggle="
tab
" data-target="
#tab-3">
<a class="
nav
-
link
block
" href="" data-toggle="
tab
" data-target="
#tab-3">
<
h6
>
Galer
i
a
de
imagénes
</
h6
>
<
h6
>
Galer
í
a
de
imagénes
</
h6
>
</
a
>
</
a
>
</
li
>
</
li
>
</
ul
>
</
ul
>
...
@@ -124,7 +124,7 @@
...
@@ -124,7 +124,7 @@
<div class="tab-pane" id="tab-3">
<div class="tab-pane" id="tab-3">
<div class='
box
'>
<div class='
box
'>
<div class='
box
-
header
dark
'>
<div class='
box
-
header
dark
'>
<h2>Galer
ia de ima
genes</h2>
<h2>Galer
ía de imá
genes</h2>
</div>
</div>
<div class='
box
-
body
'>
<div class='
box
-
body
'>
<div class="row">
<div class="row">
...
@@ -132,7 +132,7 @@
...
@@ -132,7 +132,7 @@
{!! Form::open(['
route
'=> ['
admin
.
product_resources
.
files
.
store
', $product->id], '
method
' => '
POST
', '
files
'=>'
true
', '
id
' => '
my
-
dropzone
' , '
class
'
=>
'
dropzone
']) !!}
{!! Form::open(['
route
'=> ['
admin
.
product_resources
.
files
.
store
', $product->id], '
method
' => '
POST
', '
files
'=>'
true
', '
id
' => '
my
-
dropzone
' , '
class
'
=>
'
dropzone
']) !!}
<div class="dz-message" style="height:200px;">
<div class="dz-message" style="height:200px;">
Arrastra las im
agenes aquí
Arrastra las im
ágenes aquí.
</div>
</div>
<div class="dropzone-previews"></div>
<div class="dropzone-previews"></div>
<button type="submit" class="btn btn-success" id="submitFiles">Save</button>
<button type="submit" class="btn btn-success" id="submitFiles">Save</button>
...
...
src/views/product/fields.blade.php
View file @
3c25b478
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
</div>
</div>
<div
class=
'col-md-6'
>
<div
class=
'col-md-6'
>
<div
class=
"form-group"
>
<div
class=
"form-group"
>
{!! Form::label('category_id', 'Categor
i
a', ['class'=>'control-label'])!!}
{!! Form::label('category_id', 'Categor
í
a', ['class'=>'control-label'])!!}
{!! Form::select('category_id', $categories, null, ["class"=>"form-control", "required"=>"required"]) !!}
{!! Form::select('category_id', $categories, null, ["class"=>"form-control", "required"=>"required"]) !!}
</div>
</div>
</div>
</div>
...
...
src/views/product/index.blade.php
View file @
3c25b478
...
@@ -31,8 +31,8 @@
...
@@ -31,8 +31,8 @@
<tr>
<tr>
<th>#</th>
<th>#</th>
<th>Producto</th>
<th>Producto</th>
<th>Descripci
o
n</th>
<th>Descripci
ó
n</th>
<th>Caracter
i
sticas</th>
<th>Caracter
í
sticas</th>
<th>Especificaciones</th>
<th>Especificaciones</th>
<th></th>
<th></th>
</tr>
</tr>
...
...
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