string("name"); $table->text("address"); $table->string("phone_number"); $table->string("npwp"); $table->string("logo")->nullable(); $table->string("file_attachment")->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('company'); } }