Commit 1e46a508 by Angel MAS

fixes

parent 6a975f08
...@@ -184,7 +184,11 @@ class AdminProductController extends Controller ...@@ -184,7 +184,11 @@ class AdminProductController extends Controller
public function deleteImage($id) public function deleteImage($id)
{ {
$gallery = Gallery::find($id); $gallery = Gallery::find($id);
unlink(public_path().$gallery->path);
if (file_exists(public_path().$gallery->path)) {
unlink(public_path().$gallery->path);
}
$gallery->delete(); $gallery->delete();
return redirect() return redirect()
...@@ -196,7 +200,11 @@ class AdminProductController extends Controller ...@@ -196,7 +200,11 @@ class AdminProductController extends Controller
public function deleteCover($id) public function deleteCover($id)
{ {
$product = Product::find($id); $product = Product::find($id);
unlink(public_path().'/storage/'.$product->cover);
if (file_exists(public_path().'/storage/'.$product->cover)) {
unlink(public_path().'/storage/'.$product->cover);
}
$product->cover = null; $product->cover = null;
$product->save(); $product->save();
......
...@@ -118,10 +118,11 @@ ...@@ -118,10 +118,11 @@
<script type="text/javascript"> <script type="text/javascript">
Dropzone.options.myDropzone = { Dropzone.options.myDropzone = {
autoProcessQueue: false, autoProcessQueue: true,
uploadMultiple: true, uploadMultiple: true,
maxFilezise: 10, maxFilezise: 30,
maxFiles: 5, maxFiles: 10,
parallelUploads: 10,
init: function() { init: function() {
var submitBtn = document.querySelector("#submitFiles"); var submitBtn = document.querySelector("#submitFiles");
......
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