id(); $table->string('name'); $table->string('email'); $table->string('phone_number'); $table->text('message'); $table->text('reply_message')->nullable(); $table->string('ip_address'); $table->enum('status', ['0', '1'])->default('0'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('contacts'); } };