id(); $table->foreignId('company_id')->unsigned(); $table->foreignId('country_id')->unsigned(); $table->string('reference'); $table->string('phone')->nullable(); $table->string('email')->nullable(); $table->string('wechat_id')->nullable(); $table->softDeletes(); $table->timestamps(); $table->foreign('country_id')->references('id')->on('countries'); $table->foreign('company_id')->references('id')->on('companies'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts'); } }