id(); $table->string('name'); $table->text('address')->nullable(); $table->string('phone')->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('hotels'); } }