uuid('id')->primary(); $table->string('name'); $table->string('email'); $table->string('category')->nullable(); $table->string('subject'); $table->text('message'); $table->enum('status', ['pending', 'replied'])->default('pending'); $table->timestamp('replied_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('inquiries'); } };