Drop Statement
Drop tables without checking.
DB::drop('posts');
Drop tables only if the table is exist.
DB::dropIfExists('terms');
Drop tables without checking.
DB::drop('posts');
Drop tables only if the table is exist.
DB::dropIfExists('terms');