id(); $table->string('name'); $table->string('phone'); $table->string('email'); $table->text('message'); $table->string('attachment')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('quotations'); } };