Schema::create('collections', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('slug')->unique(); $table->longText(column: 'description')->nullable(); $table->json('images')->nullable(); $table->foreignId('media_id')->nullable()->constrained('media')->nullOnDelete(); $table->boolean('is_visible')->default(true); $table->foreignId('parent_id') ->nullable() ->constrained('collections') ->cascadeOnDelete(); $table->json('tags')->nullable(); $table->json('data')->nullable(); $table->timestamps(); });