softDeletes()->index(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('waybills',function (Blueprint $table){ $table->dropSoftDeletes(); }); } }