string('slug')->unique(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('eventos', function (Blueprint $table) { $table->dropColumn('slug'); }); } }