id(); $table->jsonb('name'); $table->string('slug')->unique(); $table->jsonb('description')->nullable(); $table->integer('sort_order')->nullable(); $table->string('seo_title')->nullable(); $table->string('seo_description')->nullable(); $table->boolean('is_visible')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('collections'); } };