id(); $table->string('lastname')->nullable(); $table->string('firstname')->nullable(); $table->string('email')->nullable(); $table->string('address')->nullable(); $table->string('subject')->nullable(); $table->text('message')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('contacts'); } };