> For the complete documentation index, see [llms.txt](https://zat-scripts.gitbook.io/zat-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zat-scripts.gitbook.io/zat-scripts/qbcore/foodie/common-questions.md).

# Common questions

<details>

<summary>How to add job for each restaurant ?</summary>

Just under the config.authorizedJobs, just write the respective job for each restaurant.

```lua
Config.authorizedJobs   = {
    ["burgershot"] = "BurgerShot",
    --["jobname"] = "Restaurant Name",
}
```

</details>

<details>

<summary>Can I use another notification for the order ?</summary>

Yes, you can in the *config.lua*

```lua
RegisterNetEvent("zat-deliveryapp:client:Notify", function()
    -- You can add the duty as a condition if you need to...
    TriggerServerEvent('qb-phone:server:sendNewMail', {
        sender = "Foodie",
        subject = "New Order",
        message = "New Order Just arrived, Check the Foodie App for more details...",
        button = {}
    })
end)
```

</details>
