id(); $table->bigInteger('service_id')->unsigned()->nullable(); $table->foreign('service_id')->references('id')->on('services')->nullable(); $table->string('fullname'); // $table->string('last_name'); $table->string('email'); $table->string('phone'); $table->string('message'); $table->boolean('status')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts'); } }