Replace qb-core/client/functions.lua QBCore.Functions.Notify function with the code below;
qb-core/client/functions.lua
function QBCore.Functions.Notify(text, texttype, length)
texttype = texttype or 'inform' -- success / info / error
length = length or 5000
if type(text) == 'table' then
local ttext = text.text or 'Placeholder'
local caption = text.caption or 'Placeholder'
exports['izzy-uikit']:sendNotification(type, title, description, duration)
else
exports['izzy-uikit']:sendNotification(type, title, description, duration)
end
end
Move izzy-uikit folder to your resources folder.
Make sure you have started the resource in server.cfg.