If you are in development, and you are happy to clear everything from your database, then php artisan migrate:fresh will drop all your tables (and data) and re-run migrations - everything will be lost!
For instance I am having a car table without any data. And I use factory to insert it with 100 dummy data. Now, I want to delete it all without deleting the table so it's ready to be inserted with a new data.