Вы не удаляете записи из таблицы. Удалите их только из хранилища. попробуйте что-то вроде этого.
$product->image()->delete();
Редактировать
Чтобы удалить файлы из папки, вы можете сделать что-то вроде этого.
for($x = 0; $x < sizeof($images); $x++)
{
$file= $image->your_file_path;
$filename = public_path().'/uploads_folder/'.$file;
\File::delete($filename);
}
полный код,
$images = Gallery::where('imageable_id', $product->id)->get(); //i get the images but it won't delete them
if(!empty($images)){
for($x = 0; $x < sizeof($images); $x++)
{
$file= $image->your_file_path;
$filename = public_path().'/uploads_folder/'.$file;
\File::delete($filename);
}
$product->image()->delete();
}