increments('id'); $table->text('title')->nullable(); $table->text('image')->nullable(); $table->longText('description')->nullable(); $table->char('status', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('sliders'); } }