id(); $table->string('treatment_type', 50)->nullable(); $table->string('treatment_name', 50)->nullable(); $table->mediumText('descriptions')->nullable(); $table->integer('treatment_cost')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('treatments'); } };