How to drop table in Laravel? July 14, 2023 by Tarik To drop a table, you may use the Schema::drop method: Schema::drop('users'); // Better Schema::dropIfExists('users');