id(); $table->string('name'); $table->text('subject'); $table->string('email'); $table->string('photo')->nullable(); $table->string('phone')->nullable(); $table->longText('message'); $table->timestamp('read_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('messages'); } }