Delete All Rows for a Laravel Model
•
1 min read
This post was published 3 years ago. Some of the information might be outdated!
There are 2 way to delete all of the records for a model.
-
Model::truncate()
This is perfect for when you don't need to modify which records are being deleted and just want to delete all of them.
Post::truncate();
-
Model::query()->delete()
If you wanted to add some constraints onto the deletion, you'd likely want to use this method. The ::query()
method just returns a new Builder
instance, so you can chain you extra methods with, some, intellisense.
Post::query()
->delete();
Post::query()
->where('created_at', '<', now()->subYear())
->delete();