increments('id'); $table->longText('images')->nullable(); $table->longText('content')->nullable(); $table->enum('status', [1=>'Active', 0=>'Inactive'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('banners'); } }