Commit 6b6fa985 by Angel MAS

more fields and cover

parent 25a30b90
...@@ -22,6 +22,15 @@ Onestartup\Product\ProductServiceProvider::class, ...@@ -22,6 +22,15 @@ Onestartup\Product\ProductServiceProvider::class,
php artisan migrate php artisan migrate
``` ```
- add next lines to app/User.php
```php
public function products()
{
return $this->hasMany('Onestartup\Product\Model\Product', 'user_id');
}
```
- run command for publish views - run command for publish views
```php ```php
......
...@@ -38,7 +38,20 @@ class AdminProductController extends Controller ...@@ -38,7 +38,20 @@ class AdminProductController extends Controller
{ {
$product = new Product($request->all()); $product = new Product($request->all());
$product->save();
if (isset($request->cover)) {
$file = $request->file('cover');
$nombre = $file->getClientOriginalName();
$nombre_file = str_replace(' ', '_', $nombre);
$ubicacion_donde_guarda ='products/cover/'.$nombre_file;
\Storage::disk('local')->put($ubicacion_donde_guarda, \File::get($file));
$product->cover = $ubicacion_donde_guarda;
}
\Auth::user()->products()->save($product);
return redirect() return redirect()
->route('admin.product.edit', $product->id) ->route('admin.product.edit', $product->id)
...@@ -68,6 +81,18 @@ class AdminProductController extends Controller ...@@ -68,6 +81,18 @@ class AdminProductController extends Controller
{ {
$product = Product::find($id); $product = Product::find($id);
$product->fill($request->all()); $product->fill($request->all());
if (isset($request->cover)) {
$file = $request->file('cover');
$nombre = $file->getClientOriginalName();
$nombre_file = str_replace(' ', '_', $nombre);
$ubicacion_donde_guarda ='products/cover/'.$nombre_file;
\Storage::disk('local')->put($ubicacion_donde_guarda, \File::get($file));
$product->cover = $ubicacion_donde_guarda;
}
$product->save(); $product->save();
return redirect() return redirect()
...@@ -163,4 +188,20 @@ class AdminProductController extends Controller ...@@ -163,4 +188,20 @@ class AdminProductController extends Controller
} }
public function deleteCover($id)
{
$product = Product::find($id);
unlink(public_path().'/storage/'.$product->cover);
$product->cover = null;
$product->save();
//$gallery->delete();
return redirect()
->back()
->with('message_danger', 'Imagen eliminada correctamente');
}
} }
...@@ -18,10 +18,19 @@ class CreateProductsTable extends Migration ...@@ -18,10 +18,19 @@ class CreateProductsTable extends Migration
$table->string('name', 355); $table->string('name', 355);
$table->string('slug', 455); $table->string('slug', 455);
$table->string('cover', 455)->nullable();
$table->text('description')->nullable(); $table->text('description')->nullable();
$table->text('specifications')->nullable(); $table->text('specifications')->nullable();
$table->text('features')->nullable(); $table->text('features')->nullable();
$table->boolean('active')->default(true); $table->boolean('active')->default(true);
$table->date('publication_date')->nullable();
$table->string('extra1', 455)->nullable();
$table->string('extra2', 455)->nullable();
$table->string('extra3', 455)->nullable();
$table->string('extra4', 455)->nullable();
$table->string('extra5', 455)->nullable();
$table->string('extra6', 455)->nullable();
$table->integer('category_id')->unsigned(); $table->integer('category_id')->unsigned();
$table->foreign('category_id') $table->foreign('category_id')
...@@ -29,6 +38,12 @@ class CreateProductsTable extends Migration ...@@ -29,6 +38,12 @@ class CreateProductsTable extends Migration
->on('product_categories') ->on('product_categories')
->onDelete('cascade'); ->onDelete('cascade');
$table->integer('user_id')->unsigned();
$table->foreign('user_id')
->references('id')
->on('users')
->onDelete('cascade');
$table->timestamps(); $table->timestamps();
}); });
} }
......
...@@ -14,7 +14,16 @@ class Product extends Model ...@@ -14,7 +14,16 @@ class Product extends Model
'specifications', 'specifications',
'features', 'features',
'active', 'active',
'category_id' 'publication_date',
'category_id',
'cover',
'extra1',
'extra2',
'extra3',
'extra4',
'extra5',
'extra6',
]; ];
public function category() public function category()
...@@ -22,6 +31,11 @@ class Product extends Model ...@@ -22,6 +31,11 @@ class Product extends Model
return $this->belongsTo('Onestartup\Product\Model\ProductCategory', 'category_id'); return $this->belongsTo('Onestartup\Product\Model\ProductCategory', 'category_id');
} }
public function user()
{
return $this->belongsTo('App\User', 'user_id');
}
public function images() public function images()
{ {
return $this->hasMany('Onestartup\Product\Model\ProductImage', 'product_id'); return $this->hasMany('Onestartup\Product\Model\ProductImage', 'product_id');
......
...@@ -13,9 +13,12 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){ ...@@ -13,9 +13,12 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
Route::delete('admin/product/delete/gallery/{id}', 'Onestartup\Product\Controller\AdminProductController@deleteImage') Route::delete('admin/product/delete/gallery/{id}', 'Onestartup\Product\Controller\AdminProductController@deleteImage')
->name('admin.product.gallery.delete'); ->name('admin.product.gallery.delete');
Route::delete('delete/cover/product/{id}', 'Onestartup\Product\Controller\AdminProductController@deleteCover')
->name('delete.cover.product');
}); });
Route::group(['middleware' => ['web']], function(){ Route::group(['middleware' => ['web']], function(){
Route::get('product/{slug}', 'Onestartup\Product\Controller\ProductController@show')->name('show.product'); Route::get('portafolio/{slug}', 'Onestartup\Product\Controller\ProductController@show')->name('show.product');
Route::get('products', 'Onestartup\Product\Controller\ProductController@index')->name('main.product'); Route::get('portafolio', 'Onestartup\Product\Controller\ProductController@index')->name('main.product');
}); });
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<h2>Actualizar información</h2> <h2>Actualizar información</h2>
</div> </div>
<div class='box-body'> <div class='box-body'>
{!! Form::open(['route'=> 'admin.product.store','method'=>'POST', "id"=>"target"]) !!} {!! Form::open(['route'=> 'admin.product.store','method'=>'POST', "id"=>"target", 'enctype'=>'multipart/form-data']) !!}
@include('product::product.fields') @include('product::product.fields')
</div> </div>
<div class='dker p-a text-right'> <div class='dker p-a text-right'>
...@@ -38,5 +38,8 @@ ...@@ -38,5 +38,8 @@
CKEDITOR.replace('description', options); CKEDITOR.replace('description', options);
CKEDITOR.replace('features', options); CKEDITOR.replace('features', options);
CKEDITOR.replace('specifications', options); CKEDITOR.replace('specifications', options);
$("#publication_date").datepicker({
dateFormat: "yy-mm-dd"
});
</script> </script>
@endsection @endsection
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<h2>Actualizar información del producto</h2> <h2>Actualizar información del producto</h2>
</div> </div>
<div class='box-body'> <div class='box-body'>
{!! Form::model($product,['route'=> ['admin.product.update', $product->id],"method"=>"PUT"]) !!} {!! Form::model($product,['route'=> ['admin.product.update', $product->id],"method"=>"PUT", 'enctype'=>'multipart/form-data']) !!}
@include('product::product.fields') @include('product::product.fields')
</div> </div>
<div class='dker p-a text-right'> <div class='dker p-a text-right'>
...@@ -66,6 +66,33 @@ ...@@ -66,6 +66,33 @@
</div> </div>
</div> </div>
<!-- .modal nuevo contrato -->
<div class='modal fade' data-backdrop='true' id='ver'>
<div class='modal-dialog modal-lg'>
<div class='modal-content box-shadow-z3'>
<div class='modal-body text-center p-lg'>
@if ($product->cover == null)
<h4>No hay imagen asignada</h4>
@else
<img class='image-modal-preview' src="{{asset('storage/'.$product->cover)}}">
@endif
</div>
<div class='modal-footer'>
<button class='btn dark p-x-md' data-dismiss='modal' type='button'>Cerrar</button>
@if($product->cover != null)
{!! Form::open(['route'=> ['delete.cover.product',$product->id],'method'=>'DELETE'])!!}
<button class='btn btn-danger button-mb' onclick="return confirm('¿Estás seguro de eliminar este elemento?');" type='submit'>
<i class='fas fa-trash-alt icon-special-size'></i>
Eliminar
</button>
{!! Form::close()!!}
@endif
</div>
</div>
<!-- /.modal-content -->
</div>
</div>
@endsection @endsection
@section('script_extras') @section('script_extras')
...@@ -82,6 +109,9 @@ ...@@ -82,6 +109,9 @@
CKEDITOR.replace('description', options); CKEDITOR.replace('description', options);
CKEDITOR.replace('features', options); CKEDITOR.replace('features', options);
CKEDITOR.replace('specifications', options); CKEDITOR.replace('specifications', options);
$("#publication_date").datepicker({
dateFormat: "yy-mm-dd"
});
</script> </script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.4.0/min/dropzone.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.4.0/min/dropzone.min.js"></script>
......
...@@ -32,6 +32,78 @@ ...@@ -32,6 +32,78 @@
<div class="row"> <div class="row">
<div class="col-md-6"> <div class="col-md-6">
<div class="form-group">
{!! Form::label('cover', 'Portada', ['class'=>'control-label'])!!}
@if (isset($product))
<span>
<a class="btn btn-xs accent" data-target="#ver" data-toggle="modal" href="#" ui-toggle-class="fade-up-big">
Ver actual
<i class="fa fa-eye"></i>
</a>
</span>
@endif
<br>
{!! Form::file('cover', null, ["class"=>"form-control", "required"=>"required"]) !!}
</div>
</div>
<div class="col-md-6">
<div class="form-group">
{!! Form::label('publication_date', 'Fecha de publicación', ['class'=>'control-label'])!!}
{!! Form::text('publication_date', null, ["class"=>"form-control", "required"=>"required", "id"=>"publication_date"]) !!}
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="form-group">
{!! Form::label('extra1', 'Ciudad', ['class'=>'control-label'])!!}
{!! Form::text('extra1', null, ["class"=>"form-control"]) !!}
</div>
</div>
<div class="col-md-4">
<div class="form-group">
{!! Form::label('extra2', 'Latitud', ['class'=>'control-label'])!!}
{!! Form::text('extra2', null, ["class"=>"form-control"]) !!}
</div>
</div>
<div class="col-md-4">
<div class="form-group">
{!! Form::label('extra3', 'Longitud', ['class'=>'control-label'])!!}
{!! Form::text('extra3', null, ["class"=>"form-control"]) !!}
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="form-group">
{!! Form::label('extra4', 'Extra 4', ['class'=>'control-label'])!!}
{!! Form::text('extra4', null, ["class"=>"form-control"]) !!}
</div>
</div>
<div class="col-md-4">
<div class="form-group">
{!! Form::label('extra5', 'Extra 5', ['class'=>'control-label'])!!}
{!! Form::text('extra5', null, ["class"=>"form-control"]) !!}
</div>
</div>
<div class="col-md-4">
<div class="form-group">
{!! Form::label('extra6', 'Extra 6', ['class'=>'control-label'])!!}
{!! Form::text('extra6', null, ["class"=>"form-control"]) !!}
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
{!! Form::label('description', 'Descripción', ['class'=>'control-label'])!!} {!! Form::label('description', 'Descripción', ['class'=>'control-label'])!!}
{!! Form::textarea('description', null, ["class"=>"form-control", "required"=>"required", 'id'=>'body', 'rows'=>"30", 'cols'=>"80"]) !!} {!! Form::textarea('description', null, ["class"=>"form-control", "required"=>"required", 'id'=>'body', 'rows'=>"30", 'cols'=>"80"]) !!}
</div> </div>
......
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