id(); $table->enum('page', ['home', 'wallpaper', 'mural']); $table->string('image_path'); $table->string('title'); $table->text('description')->nullable(); $table->string('button_text')->nullable(); $table->string('button_link')->nullable(); $table->integer('sort_order')->default(0); $table->boolean('is_active')->default(true); $table->timestamps(); $table->index('page'); $table->index('is_active'); }); } public function down(): void { Schema::dropIfExists('hero_images'); } };