drop table in laravel command code example
Example 1: php artisan drop table
php artisan make:migration drop_name_table
Example 2: laravel drop table migration
Schema::drop('users');
Schema::dropIfExists('users');
php artisan make:migration drop_name_table
Schema::drop('users');
Schema::dropIfExists('users');