artisan command for drop all tables and add migration code example
Example 1: laravel drop table migration
Schema::drop('users');
Schema::dropIfExists('users');
Example 2: Laravel Drop All Tables & Migrate
php artisan migrate:fresh
php artisan migrate:fresh --seed