string('slug')->nullable()->comment('Uuid for public link'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('homes', static function (Blueprint $table) { $table->dropColumn('slug'); }); } }