QB-Core Installation

Step 1: Inventory Items

weed_seed = { 
    name = 'weed_seed', 
    label = 'Weed Seed', 
    weight = 0, 
    type = 'item', 
    image = 'weed_seed.png', 
    unique = false, 
    useable = false, 
    description = '' 
},

weed_bucket = { 
    name = 'weed_bucket', 
    label = 'Weed Bucket', 
    weight = 0, 
    type = 'item', 
    image = 'weed_bucket.png', 
    unique = false, 
    useable = false, 
    description = '' 
},

coca_seed = { 
    name = 'coca_seed', 
    label = 'Coca Seed', 
    weight = 0, 
    type = 'item', 
    image = 'coca_seed.png', 
    unique = false, 
    useable = false, 
    description = '' 
},

poppy_seed = { 
    name = 'poppy_seed', 
    label = 'Poppy Seed', 
    weight = 0, 
    type = 'item', 
    image = 'poppy_seed.png', 
    unique = false, 
    useable = false, 
    description = '' 
},

weed = { 
    name = 'weed', 
    label = 'Weed', 
    weight = 0, 
    type = 'item', 
    image = 'weed.png', 
    unique = false, 
    useable = false, 
    description = '' 
},

coca_leaves = { 
    name = 'coca_leaves', 
    label = 'Coca Leaves', 
    weight = 0, 
    type = 'item', 
    image = 'coca_leaves.png', 
    unique = false, 
    useable = false, 
    description = '' 
},

poppy_tears = { 
    name = 'poppy_tears', 
    label = 'Poppy Tears', 
    weight = 0, 
    type = 'item', 
    image = 'poppy_tears.png', 
    unique = false, 
    useable = false, 
    description = '' 
},
-- CB-Planting
["weed_seed"] = {
  label = "Weed Seed",
  weight = 0,
  stack = true,
  close = true,
  description = "",
  client = {
      image = "weed_seed.png",
  }
},
["weed_bucket"] = {
    label = "Weed Bucket",
    weight = 0,
    stack = true,
    close = true,
    description = "",
    client = {
        image = "weed_bucket.png",
    }
},

["coca_seed"] = {
    label = "Coca Seed",
    weight = 0,
    stack = true,
    close = true,
    description = "",
    client = {
        image = "coca_seed.png",
    }
},
["poppy_seed"] = {
    label = "Poppy Seed",
    weight = 0,
    stack = true,
    close = true,
    description = "",
    client = {
        image = "poppy_seed.png",
    }
},
["weed"] = {
    label = "Weed",
    weight = 0,
    stack = true,
    close = true,
    description = "",
    client = {
        image = "weed.png",
    }
},
["coca_leaves"] = {
    label = "Coca Leaves",
    weight = 0,
    stack = true,
    close = true,
    description = "",
    client = {
        image = "coca_leaves.png",
    }
},
["poppy_tears"] = {
    label = "Poppy Tears",
    weight = 0,
    stack = true,
    close = true,
    description = "",
    client = {
        image = "poppy_tears.png",
    }
},