id(); $table->string("name")->nullable(); $table->string("address")->nullable(); $table->text("profile")->nullable(); $table->string("logo")->nullable(); $table->text("banners")->nullable(); $table->string("status")->default(0); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('project'); } }