> For the complete documentation index, see [llms.txt](https://docs.deltarix.store/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.deltarix.store/paid-assets/mdt-v2/bridges/client/garage/qbx_garages.md).

# qbx\_garages

```lua
if GetResourceState('qbx_garages') ~= 'started' then return end

Garage = {

  ---@param model string The vehicle model
  getVehicleName = function(model)
    local v = exports.qbx_core:GetVehicleByHash(model)
    return v and v.name or model
  end
}
```
