id(); $table->string('first_name'); $table->string('last_name'); $table->string('middle_name')->nullable(); $table->string('photo')->nullable(); $table->string('email')->unique(); $table->string('phone')->unique()->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamp('email_verified_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } };