# Inventories metadata

## qb-inventory

Navigate to **qb-core/shared/items.lua** and add the following code:

```lua
['keys']                           = {['name'] = 'keys',                              ['label'] = 'Car Keys',                 ['weight'] = 500,         ['type'] = 'item',         ['image'] = 'keys.png',                 ['unique'] = true,     ['useable'] = true,     ['shouldClose'] = true,       ['combinable'] = nil,   ['description'] = 'Car Keys'},
```

Go to **qb-inventory/apps.js** and add:

<pre class="language-lua"><code class="lang-lua">} else if (itemData.name == "keys") {
<strong>    $(".item-info-description").html(
</strong>     "&#x3C;p>&#x3C;strong>License Plate: &#x3C;/strong>&#x3C;span>" +
     itemData.info.plate +
    "&#x3C;/span>&#x3C;/p>&#x3C;br />&#x3C;p>" +
     itemData.description +
    "&#x3C;/p>"
);
</code></pre>

Under:

```lua
} else {
    $(".item-info-description").html(
     "<p><strong>Serial Number: </strong><span>" +
    itemData.info.serie +
     "</span></p><p><strong>Munition: </strong><span>" +
    itemData.info.ammo +
     "</span></p><p>" +
    itemData.description +
       "</p>"
    );
}
```

## ox\_inventory

Navigate to **ox\_inventory/data/items.lua** and add the following code:

```lua
['keys'] = {
    label = 'Car Keys',
    weight = 1,
    stack = false,
    close = false,
    description = "Car Keys",
    server = {
        export = 'okokGarage.lockvehicle',
    },
},
```
