Rental
Dependencies
- [qb-core]
 - [ps-buff]
 - [ps-hud]
 
Installation
- Place the folder "drp-rental" in your drp folder if drp folder in not available create one or you can just put it in your resources folder.
 - Add 
ensure drp-rentalin yourserver.cfgif not using drp folder then juststart drp-rental - Add the item to your items.lua(Available in qb-core/shared/items):
- Add Below code to 
qb-core/shared/items.lua 
 - Add Below code to 
 
  -- drp rental
    ["rentalpaper"]              = {["name"] = "rentalpaper",                   ["label"] = "Rental Papers",            ["weight"] = 50,        ["type"] = "item",      ["image"] = "rentalPaper.png",      ["unique"] = true,      ["useable"] = false,    ["shouldClose"] = false,    ["combinable"] = nil,   ["description"] = "Document for the rented car."},
- Add images provided with the file inside 
qb-inventory/html/images - Go to 
qb-inventory/html/js/app.jsand add the code provided below. 
          } else if (itemData.name == "rentalpaper") {
            $(".item-info-title").html('<p>' + itemData.label + '</p>')
            $(".item-info-description").html('<p><strong>Plate: </strong><span>'+ itemData.info.label + '</span></p>'
            );
- Restart the server and you are good to go.