Skip to content

Eloquent destroy() ignore order #33362

Answered by jmarcher
ghost asked this question in General
Discussion options

You must be logged in to vote

The entries will be deleted in the natural order of your table.

        foreach ($instance->whereIn($key, $ids)->get() as $model) {
            if ($model->delete()) {
                $count++;
            }
        }

That is the code used by Model::destroy(...)

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by GrahamCampbell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant