id(); $table->string('name'); // Name * $table->string('email'); // Email * $table->string('country_region')->nullable(); // Country Region (optional) $table->string('company'); // Company/Organization * $table->string('industry'); // Industry * $table->string('topic'); // Select a topic * $table->text('message'); // Message * $table->timestamps(); // created_at, updated_at }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('contact_us'); } };