如果特定博客文章中的图像已被删除,我想对图像顺序列进行递减,图像会递减,但没有获取帖子 ID。基本上,每篇博客文章的图像顺序都应从 1 开始,但它似乎会增加之前博客文章的顺序号。我尝试传递帖子 ID,但遇到了一些问题,感谢您的帮助,谢谢。
public function destroy(Images $image)
{
$image->delete();
$image->update(['order' => 0]);
$images = Images::all();
$post = Post::all();
$i = 1;
foreach ($images as $img){
$img->timestamps = false;
$id = $img->id;
$img->update(['order' => $i])->where('post_id', $post->id);
$i++;
}
return Redirect::back()->with('message','Image Deleted!');
}
慕雪6442864