YourModel::truncate();
Laravel Truncate Code Example
So for example, if you want to delete all of your "Article" you can define it like below. Do note that the code below is defined within the "routes/web.php" file
Route::get('/delete-articles', function () { Article::truncate(); });
So now when you visit "/delete-article", all of the articles will be deleted and emptied.
Delete All
One other way to delete all of the model records, you can make use of the "Article::query()->delete()". The advantage of using this method is that you get to listen to the Eloquent Event.
Article::query()->delete();
Leave a reply