Commit 84d2b8c0 by Angel MAS

elimina imagenes de la carpeta

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