Comment supprimer plusieurs lignes de la relation dans Laravel
App\Post;
$post = Post::find($id);
Comment::where('post_id',$post)->delete();
Mohamad
App\Post;
$post = Post::find($id);
Comment::where('post_id',$post)->delete();
$org->products()->whereIn('id', $ids)->delete()