Commit 233317de by Pancholin

ortografia

parent 52064a13
......@@ -141,11 +141,12 @@ class AdminProductController extends Controller
return
"<p class='mb0'>Nombre: <b>$product->name</b></p>".
"<p class='mb0'>Slug: <b>$product->slug</b></p>".
"<p class='mb0'>Categoria: <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'>Categoría: <b>".$product->category->name."</b></p>".
"<p class='mb0'>Fecha de creación: <b>".$product->created_at->format('d/m/Y')."</b></p>";
})
->addColumn('form', function ($product) {
return "<form method='POST' action='".route('admin.product.destroy',$product->id)."'>".
return "<center><form method='POST' action='".route('admin.product.destroy',$product->id)."'>".
"<input name='_method' type='hidden' value='DELETE' class='has-value'>".
csrf_field() .
"<button class='btn btn-danger btn-xs button-mb' onclick='return confirm();' type='submit'>".
......@@ -154,7 +155,7 @@ class AdminProductController extends Controller
"<a href='".route('show.product', $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.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'])
->make();
......
......@@ -16,7 +16,7 @@
<div class='box'>
<div class='box-header dark'>
<h2>
Agregar nueva categoria
Agregar nueva categoría
<span></span>
<a aria-expanded='false' class='btn btn-xs btn-danger button-ml' data-toggle='collapse' href='#agregarCategoria'>
Cancelar
......@@ -41,7 +41,7 @@
<div class='box'>
<div class='box-header dark'>
<h2>
Listado de Categorias de productos
Listado de Categorías de productos
<span>
<a aria-expanded='false' class='btn btn-xs btn-info button-ml' data-toggle='collapse' href='#agregarCategoria'>
<i class='fas fa-plus'></i>
......@@ -72,7 +72,7 @@
</td>
<td> {{$category->description}}</td>
<td> {{$category->products->count()}}</td>
<td>
<td class="text-center">
{!! Form::open(['route'=> ['admin.product.category.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'>
<i class='fas fa-trash-alt icon-special-size'></i>
......
......@@ -39,7 +39,7 @@
<div class='col-md-12'>
<div class='box'>
<div class='box-header dark'>
<h2>Galeria de imagenes</h2>
<h2>Galería de imágenes</h2>
</div>
<div class='box-body'>
<div class="row">
......@@ -47,7 +47,7 @@
{!! Form::open(['route'=> ['admin.product.files.store', $product->id], 'method' => 'POST', 'files'=>'true', 'id' => 'my-dropzone' , 'class' => 'dropzone']) !!}
<div class="dz-message" style="height:200px;">
Arrastra las imagenes aqui
Arrastra las imágenes aqui.
</div>
<div class="dropzone-previews"></div>
<button type="submit" class="btn btn-success" id="submitFiles">Save</button>
......
......@@ -24,7 +24,7 @@
</div>
<div class='col-md-6'>
<div class="form-group" >
{!! Form::label('category_id', 'Categoria', ['class'=>'control-label'])!!}
{!! Form::label('category_id', 'Categoría', ['class'=>'control-label'])!!}
{!! Form::select('category_id', $categories, null, ["class"=>"form-control", "required"=>"required"]) !!}
</div>
</div>
......
......@@ -31,8 +31,8 @@
<tr>
<th>#</th>
<th>Producto</th>
<th>Descripcion</th>
<th>Caracteristicas</th>
<th>Descripción</th>
<th>Características</th>
<th>Especificaciones</th>
<th></th>
</tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment