# Portable Benches

Portable benches are enabled in:

```lua
Config.Portable = {
    Enabled = true,
    ItemName = 'craft_bench',
    Default = {
        label = 'Bancada Portátil',
        model = `prop_tool_bench02`,
        access = { type = 'public' },
        recipes = { ... },
        stash = { enabled = true, slots = 20, weight = 20000 },
        expiresMinutes = nil
    }
}
```

Placed portable benches are stored in:

```text
nord_crafting_placed
```

## Inventory requirement

If portable benches are enabled, the active inventory must contain the item named by `Config.Portable.ItemName`.

- With Nord Inventory, use the supported auto-install workflow and verify the item exists after setup.
- With other inventories, create/register the item manually.

## Expiration

`expiresMinutes` can be used to create temporary placed benches. `nil` means no configured expiration from this default.
