id(); $table->string('image'); $table->string('title')->nullable(); $table->string('sub_title')->nullable(); $table->string('name')->nullable(); $table->enum('status',['1','2']); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('partners'); } };