From 8b43f5e8892cd70c97bea468df335f349f86a41e Mon Sep 17 00:00:00 2001
From: Julian PEREZ-RAMIREZ <julian.perez-ramirez@imt-atlantique.net>
Date: Wed, 26 Mar 2025 07:55:08 +0100
Subject: [PATCH] adding more items dummy

---
 .../web_app/src/DataFixtures/ItemFixtures.php | 35 +++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/server/web_app/src/DataFixtures/ItemFixtures.php b/server/web_app/src/DataFixtures/ItemFixtures.php
index b0b6057..d2a021a 100644
--- a/server/web_app/src/DataFixtures/ItemFixtures.php
+++ b/server/web_app/src/DataFixtures/ItemFixtures.php
@@ -89,6 +89,41 @@ class ItemFixtures extends Fixture implements DependentFixtureInterface
                 'price' => 999.99,
                 'purchase_url' => 'https://example.com/drone',
             ],
+            [
+                'wishList' => $wishLists[5],
+                'title' => '4K TV',
+                'description' => 'Ultra HD Smart TV with HDR support',
+                'price' => 1099.99,
+                'purchase_url' => 'https://example.com/4k-tv',
+            ],
+            [
+                'wishList' => $wishLists[6],
+                'title' => 'Home Theater System',
+                'description' => 'Surround sound system for an immersive experience',
+                'price' => 799.99,
+                'purchase_url' => 'https://example.com/home-theater',
+            ],
+            [
+                'wishList' => $wishLists[7],
+                'title' => 'Electric Scooter',
+                'description' => 'Eco-friendly electric scooter with long battery life',
+                'price' => 599.99,
+                'purchase_url' => 'https://example.com/electric-scooter',
+            ],
+            [
+                'wishList' => $wishLists[8],
+                'title' => 'Smart Refrigerator',
+                'description' => 'Wi-Fi enabled refrigerator with smart features',
+                'price' => 1499.99,
+                'purchase_url' => 'https://example.com/smart-fridge',
+            ],
+            [
+                'wishList' => $wishLists[9],
+                'title' => 'VR Headset',
+                'description' => 'High-resolution VR headset for gaming and experiences',
+                'price' => 399.99,
+                'purchase_url' => 'https://example.com/vr-headset',
+            ],
         ];                
 
         foreach ($itemsData as $itemData) {
-- 
GitLab