id(); $table->string('name'); $table->text('description')->nullable(); $table->string('image_path')->nullable(); $table->string('brand_color')->default('#ffffff'); $table->string('hover_color')->default('rgba(255, 255, 255, 0.1)'); $table->json('badges')->nullable(); $table->string('min_deposit')->nullable(); $table->string('max_bet')->nullable(); $table->string('wagering')->nullable(); $table->string('free_spins')->nullable(); $table->string('button_link')->nullable(); $table->json('key_features')->nullable(); $table->boolean('is_sticky')->default(false); $table->boolean('is_no_deposit')->default(false); $table->integer('order')->default(0); $table->boolean('is_active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('bonuses'); } };