id(); $table->string('full_name'); $table->string('email'); $table->string('subject')->nullable(); $table->string('phone',15); $table->text('body'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts'); } };