Advertisement
viscousguy

whenever user goes to /furnitures route

May 7th, 2024 (edited)
571
0
17 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.17 KB | Source Code | 0 0
  1. [
  2.     {
  3.         "id": 1,
  4.         "furniture_type_id": 1,
  5.         "room_type_id": 2,
  6.         "name": "Mid-Century Modern Chair",
  7.         "description": "Elegant chair with clean lines and tapered legs.",
  8.         "dimensions": "30x25x40",
  9.         "price": 120.75,
  10.         "contractor_id": 2,
  11.         "slug": "mid-century-modern-chair",
  12.         "display": true,
  13.         "materials": "Wood, Fabric",
  14.         "images": ["/images/chair1.jpg", "/images/chair2.jpg"],
  15.         "contractor": {
  16.             "firstname": "Jane",
  17.             "lastname": "Smith",
  18.             "city": "Los Angeles"
  19.         },
  20.         "room_type": "Bedroom"
  21.     },
  22.     {
  23.         "id": 2,
  24.         "furniture_type_id": 2,
  25.         "room_type_id": 1,
  26.         "name": "Rustic Farmhouse Table",
  27.         "description": "Reclaimed wood table with a warm, inviting finish.",
  28.         "dimensions": "72x36x30",
  29.         "price": 450.00,
  30.         "contractor_id": 1,
  31.         "slug": "rustic-farmhouse-table",
  32.         "display": true,
  33.         "materials": "Wood",
  34.         "images": ["/images/table1.jpg"],
  35.         "contractor": {
  36.             "firstname": "John",
  37.             "lastname": "Doe",
  38.             "city": "New York"
  39.         },
  40.         "room_type": "Living Room"
  41.     },
  42.     {
  43.         "id": 3,
  44.         "furniture_type_id": 1,
  45.         "room_type_id": 1,
  46.         "name": "Plush Velvet Sofa",
  47.         "description": "Luxurious sofa with soft velvet upholstery.",
  48.         "dimensions": "84x35x32",
  49.         "price": 799.99,
  50.         "contractor_id": 3,
  51.         "slug": "plush-velvet-sofa",
  52.         "display": true,
  53.         "materials": "Fabric, Wood, Metal",
  54.         "images": ["/images/sofa1.jpg", "/images/sofa2.jpg"],
  55.         "contractor": {
  56.             "firstname": "Emily",
  57.             "lastname": "Johnson",
  58.             "city": "Chicago"
  59.         },
  60.         "room_type": "Living Room"
  61.     },
  62.     {
  63.         "id": 4,
  64.         "furniture_type_id": 2,
  65.         "room_type_id": 2,
  66.         "name": "Geometric Coffee Table",
  67.         "description": "Modern coffee table with a unique geometric base.",
  68.         "dimensions": "48x24x18",
  69.         "price": 275.50,
  70.         "contractor_id": 1,
  71.         "slug": "geometric-coffee-table",
  72.         "display": true,
  73.         "materials": "Glass, Metal",
  74.         "images": ["/images/coffeetable1.jpg"],
  75.         "contractor": {
  76.             "firstname": "John",
  77.             "lastname": "Doe",
  78.             "city": "New York"
  79.         },
  80.         "room_type": "Bedroom"
  81.     },
  82.     {
  83.         "id": 5,
  84.         "furniture_type_id": 1,
  85.         "room_type_id": 3, // Assuming there's a room type with the ID 3
  86.         "name": "Tufted Leather Ottoman",
  87.         "description": "Versatile ottoman with button-tufted leather.",
  88.         "dimensions": "36x36x18",
  89.         "price": 349.00,
  90.         "contractor_id": 2,
  91.         "slug": "tufted-leather-ottoman",
  92.         "display": true,
  93.         "materials": "Leather, Wood",
  94.         "images": ["/images/ottoman1.jpg", "/images/ottoman2.jpg"],
  95.         "contractor": {
  96.             "firstname": "Jane",
  97.             "lastname": "Smith",
  98.             "city": "Los Angeles"
  99.         },
  100.         "room_type": "Bedroom"
  101.     }  
  102. ]
  103.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement