Answers for "delete all records in a relations laravel"

PHP
0

delete all records from table using button laravel Eloquent

// Uncomment the below to wipe the table clean before populating

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

//or

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

MyModel::truncate();
Posted by: Guest on October-30-2021

Code answers related to "delete all records in a relations laravel"

Browse Popular Code Answers by Language