id(); $table->text('name'); $table->double('lat'); $table->double('lng'); $table->text('country'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('states'); } };