📌  相关文章
📜  使用按钮 laravel Eloquent 从表中删除所有记录 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:51.829000             🧑  作者: Mango

代码示例3
// Uncomment the below to wipe the table clean before populating

DB::table('table_name')->truncate();

//or

DB::table('table_name')->delete();

MyModel::truncate();