id(); $table->string('firstname')->nullable(); $table->string('lastname')->nullable(); $table->string('phone'); $table->string('street')->nullable(); $table->string('zip')->nullable(); $table->string('city')->nullable(); $table->string('country')->nullable(); $table->string('company')->nullable(); $table->string('email')->nullable(); $table->text('notes')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts'); } }