increments('id'); $table->integer('id_permohonan')->unsigned(); // $table->foreign('id_permohonan')->references('id')->on('permohonan_blueprint'); $table->string('ic_pemohon')->nullable(); $table->string('jenis_perniagaan')->nullable(); $table->string('tempoh_perniagaan')->nullable(); $table->string('tahap_aktif')->nullable(); $table->string('dokumen_perniagaan')->nullable(); $table->string('path_dokumen_perniagaan')->nullable(); $table->string('gambar_perniagaan')->nullable(); $table->string('path_gambar_perniagaan')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('maklumat_perniagaan_blueprint'); } }