Commit 84d2b8c0 by Angel MAS

elimina imagenes de la carpeta

parent 48c8b15b
...@@ -141,7 +141,7 @@ class AdminProductController extends Controller ...@@ -141,7 +141,7 @@ class AdminProductController extends Controller
$nombre_file = str_replace(' ', '_', $fileName); $nombre_file = str_replace(' ', '_', $fileName);
$file->move($path, $nombre_file); $file->move($path, $nombre_file);
$gallery = new Gallery([ $gallery = new Gallery([
'path'=>asset($asset.$nombre_file) 'path'=>$asset.$nombre_file
]); ]);
$product->images()->save($gallery); $product->images()->save($gallery);
...@@ -154,7 +154,7 @@ class AdminProductController extends Controller ...@@ -154,7 +154,7 @@ 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);
$gallery->delete(); $gallery->delete();
return redirect() return redirect()
......
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