{"id":11424,"date":"2025-12-05T12:52:25","date_gmt":"2025-12-05T09:52:25","guid":{"rendered":"https:\/\/emirateseportal.com\/?p=11424"},"modified":"2025-12-05T12:52:26","modified_gmt":"2025-12-05T09:52:26","slug":"uae-gratuity-calculator","status":"publish","type":"post","link":"https:\/\/emirateseportal.com\/en\/uae-gratuity-calculator\/","title":{"rendered":"UAE Gratuity Calculator 2026: Updated with Labour Law"},"content":{"rendered":"<p>You can calculate your Gratuity depending on UAE labor law via the following Calculator:<\/p>\n<div class=\"service-section\">\n<div class=\"service-item\" data-group=\"contact_methods\">\n<div class=\"service-label\"><\/div>\n<\/div>\n<\/div>\n<div class=\"inserted\" data-location=\"shortcode\" data-visibility=\"\"><div class=\"inserted-inner\"><div id=\"gratuity-form\">\r\n      <form>\r\n        <label for=\"salary\">Last drawn basic salary<\/label>\r\n        <input\r\n          type=\"number\"\r\n          id=\"salary\"\r\n          class=\"form-control\"\r\n          placeholder=\"0.00\"\r\n          onkeyup=\"this.value < 0 ? this.value='0' : this.value > 1e10 && (this.value='10000000000')\"\r\n        \/>\r\n        <p id=\"salary_err\" class=\"text-danger d-none\"><\/p>\r\n    \r\n        <label for=\"first_date\">First working day<\/label>\r\n        <input\r\n          type=\"text\"\r\n          id=\"first_date\"\r\n          name=\"first_date\"\r\n          class=\"form-control user-input text-left date-field\"\r\n          placeholder=\"Eg: Apr 05 2022\"\r\n          date-inline-picker=\"true\"\r\n          data-json-node=\"first_date\"\r\n          data-is-array=\"false\"\r\n          onchange=\"validateDateRange()\"\r\n        \/>\r\n        <p id=\"first_date_err\" class=\"text-danger d-none\"><\/p>\r\n    \r\n        <label for=\"last_date\">Last working day<\/label>\r\n        <input\r\n          type=\"text\"\r\n          id=\"last_date\"\r\n          name=\"last_date\"\r\n          class=\"form-control user-input text-left date-field\"\r\n          placeholder=\"Eg: Apr 05 2022\"\r\n          date-inline-picker=\"true\"\r\n          data-json-node=\"last_date\"\r\n          data-is-array=\"false\"\r\n          onchange=\"validateDateRange()\"\r\n        \/>\r\n        <p id=\"last_date_err\" class=\"text-danger d-none\"><\/p>\r\n    \r\n        <label for=\"contract\">Type of contract<\/label>\r\n        <select name=\"contract-type\" id=\"contract\" class=\"contract-type drop-down\">\r\n          <option selected disabled value=\"\">Select contract type<\/option>\r\n          <option value=\"limited\">Limited Contract<\/option>\r\n          <option value=\"unlimited\">Unlimited Contract<\/option>\r\n        <\/select>\r\n    \r\n        <div class=\"unlimited-note\">\r\n          <p>\r\n            As of December 2023, the <b>UAE government has ended unlimited contract<\/b>\r\n            employments, requiring employers to convert them to limited contracts and calculate\r\n            gratuity accordingly.\r\n          <\/p>\r\n        <\/div>\r\n        <p id=\"contract_err\" class=\"text-danger d-none\"><\/p>\r\n    \r\n        <label for=\"termination\">Reason for exit<\/label>\r\n        <select name=\"termination-method\" id=\"termination\" class=\"termination-method drop-down\">\r\n          <option selected disabled value=\"\">Select reason<\/option>\r\n          <option value=\"termination\">Termination<\/option>\r\n          <option value=\"resignation\">Resignation<\/option>\r\n          <option value=\"end-of-contract\">End of Contract<\/option>\r\n        <\/select>\r\n        <p id=\"termination_err\" class=\"text-danger d-none\"><\/p>\r\n    \r\n        <button type=\"button\" class=\"btn btn-primary submit-btn\" onclick=\"calculateGratuity()\">Calculate gratuity<\/button>\r\n      <\/form>\r\n    \r\n      <div id=\"result-section\" style=\"display:none;\">\r\n        <h3 class=\"unstyled\">Your Gratuity amount will be<\/h3>\r\n        <h2 class=\"unstyled\" id=\"result\"><\/h2>\r\n        <h4 class=\"unstyled\" id=\"working-period\"><\/h4>\r\n      <\/div>\r\n    <\/div>\r\n    \r\n    <!-- Styles -->\r\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/bootstrap-datepicker\/1.9.0\/css\/bootstrap-datepicker.min.css\" \/>\r\n    \r\n    <!-- Scripts -->\r\n    <script src=\"https:\/\/code.jquery.com\/jquery-3.6.0.min.js\"><\/script>\r\n    <script src=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.3.3\/dist\/js\/bootstrap.bundle.min.js\"><\/script>\r\n    <script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/bootstrap-datepicker\/1.9.0\/js\/bootstrap-datepicker.min.js\"><\/script>\r\n    \r\n    <script>\r\n      $('.date-field').datepicker({\r\n        format: 'mm\/dd\/yyyy',\r\n        todayHighlight: true,\r\n        autoclose: true\r\n      });\r\n    \r\n      \"use strict\";\r\n      var workingYears, workingMonths, workingDays, gratuityDays, isValid = true,\r\n          contractType = document.querySelector(\".contract-type\"),\r\n          terminationMethod = document.querySelector(\".termination-method\");\r\n    \r\n      function calculateGratuity() {\r\n        if (validateform()) {\r\n          var result = 0;\r\n          var data = {\r\n            salary: document.getElementById(\"salary\").value,\r\n            first_date: new Date(document.getElementById(\"first_date\").value),\r\n            last_date: new Date(document.getElementById(\"last_date\").value),\r\n            contract_type: contractType.value,\r\n            termination_method: terminationMethod.value\r\n          };\r\n    \r\n          var dailyRate = 21 * Math.ceil(data.salary \/ 30);\r\n          var totalAmount = dailyRate * workingYears + (workingMonths * dailyRate \/ 12) + (workingDays * dailyRate \/ 365);\r\n    \r\n          if (workingYears > 5) {\r\n            result = 5 * dailyRate + data.salary * (workingYears + workingMonths \/ 12 + workingDays \/ 365 - 5);\r\n          } else if (\r\n            data.termination_method === \"termination\" ||\r\n            data.termination_method === \"end-of-contract\" ||\r\n            (data.contract_type === \"limited\" && data.termination_method === \"resignation\")\r\n          ) {\r\n            result = totalAmount;\r\n          } else if (data.contract_type === \"unlimited\" && data.termination_method === \"resignation\") {\r\n            if (workingYears > 1 && workingYears < 3) result = totalAmount * (1 \/ 3);\r\n            else if (workingYears > 3 && workingYears < 5) result = totalAmount * (2 \/ 3);\r\n          }\r\n    \r\n          document.getElementById(\"working-period\").innerHTML =\r\n            `Your tenure at the company is <b>${workingYears} years, ${workingMonths} months, and ${workingDays} days.<\/b>`;\r\n          document.getElementById(\"result\").innerHTML = new Intl.NumberFormat(\"en-AE\", {\r\n            style: \"currency\",\r\n            currency: \"AED\"\r\n          }).format(result);\r\n          document.getElementById(\"result-section\").style.display = \"block\";\r\n        }\r\n      }\r\n    \r\n      function validateform() {\r\n        var messages = {\r\n          salary: \"Please enter your current basic pay.\",\r\n          first_date: \"Please choose your first working day.\",\r\n          last_date: \"Please choose your last working day.\",\r\n          contract: \"Please select a contract type.\",\r\n          termination: \"Please select a reason for exit.\"\r\n        };\r\n    \r\n        var isFormValid = true;\r\n        for (var field in messages) {\r\n          var el = document.getElementById(field);\r\n          if (!el || !el.value.trim()) {\r\n            showHideErr(field, true, messages[field]);\r\n            isFormValid = false;\r\n          } else {\r\n            showHideErr(field, false);\r\n          }\r\n        }\r\n    \r\n        return isFormValid;\r\n      }\r\n    \r\n      function validateDateRange() {\r\n        var first = new Date(document.getElementById(\"first_date\").value);\r\n        var last = new Date(document.getElementById(\"last_date\").value);\r\n    \r\n        if (first > last) {\r\n          showHideErr(\"first_date\", true, \"Start date must be before end date\");\r\n          isValid = false;\r\n          return false;\r\n        }\r\n    \r\n        showHideErr(\"first_date\", false);\r\n        isValid = true;\r\n        calculateDateDifference(first, last);\r\n    \r\n        if (workingYears < 1 && document.getElementById(\"last_date\").value !== \"\") {\r\n          showHideErr(\"last_date\", true, \"Need at least 1 year of experience\");\r\n          isValid = false;\r\n        } else {\r\n          showHideErr(\"last_date\", false);\r\n        }\r\n      }\r\n    \r\n      function showHideErr(field, show, msg = \"\") {\r\n        var errEl = document.getElementById(field + \"_err\");\r\n        if (show) {\r\n          errEl.innerHTML = msg;\r\n          errEl.classList.add(\"error\");\r\n          errEl.classList.remove(\"d-none\");\r\n        } else {\r\n          errEl.classList.remove(\"error\");\r\n          errEl.classList.add(\"d-none\");\r\n        }\r\n      }\r\n    \r\n      function calculateDateDifference(start, end) {\r\n        var current = new Date(start);\r\n        var diff = new Date(end) - current;\r\n        var days = Math.ceil(diff \/ (1000 * 60 * 60 * 24));\r\n        gratuityDays = days;\r\n    \r\n        workingYears = 0;\r\n        while (days >= 365) {\r\n          var yearDays = isLeapYear(current.getFullYear()) ? 366 : 365;\r\n          if (days < yearDays) break;\r\n          days -= yearDays;\r\n          workingYears++;\r\n          current.setFullYear(current.getFullYear() + 1);\r\n        }\r\n    \r\n        workingMonths = 0;\r\n        var monthIndex = current.getMonth();\r\n        while (days > 0) {\r\n          var monthDays = new Date(current.getFullYear(), monthIndex + 1, 0).getDate();\r\n          if (days < monthDays) break;\r\n          days -= monthDays;\r\n          workingMonths++;\r\n          monthIndex++;\r\n        }\r\n    \r\n        workingDays = days;\r\n      }\r\n    \r\n      function isLeapYear(year) {\r\n        return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;\r\n      }\r\n    \r\n      contractType.addEventListener(\"input\", function () {\r\n        var display = contractType.value === \"unlimited\" ? \"none\" : \"block\";\r\n        terminationMethod.querySelector(\"option[value='end-of-contract']\").style.display = display;\r\n        document.querySelector(\".unlimited-note\").style.display = contractType.value === \"unlimited\" ? \"flex\" : \"none\";\r\n      });\r\n    <\/script>\r\n    \r\n    <style>\r\n      #gratuity-form {\r\n        max-width: 700px;\r\n        margin: auto;\r\n        background: var(--bg-color);\r\n        padding: 2rem;\r\n        border-radius: var(--site-border-radius);\r\n        border-top: 2px solid var(--site-color);\r\n        box-shadow: 0 4px 6px var(--shadow-color);\r\n      }\r\n    \r\n      #gratuity-form form {\r\n        display: flex;\r\n        flex-direction: column;\r\n        gap: 1em;\r\n      }\r\n    \r\n      #gratuity-calculator .form-group,\r\n      #gratuity-calculator label {\r\n        margin-bottom: 1.5rem;\r\n      }\r\n    \r\n      #result-section {\r\n        margin-top: 2em;\r\n      }\r\n\r\n      #result-section #result {\r\n        color: var(--site-color);\r\n      }\r\n    <\/style>\r\n    <\/div><\/div>\n<p><\/div><\/div><\/div><div class=\"primary-content-body\"><div class=\"primary-content-content singular-content\"><div class=\"singular-body\"><\/p>\n<h2>What is Gratuity in UAE<\/h2>\n<p>UAE law entitles every employee to an end-of-service gratuity (EOS) payment, also known as Gratuity, after at least one year of service. When calculating length of service, days of unpaid absence are not counted, and employers may deduct any amounts owed by the employee from the EOS payment. EOS payment in the UAE is calculated based on 21 days&#8217; pay for each of the first five years of service, and 30 days&#8217; pay for each additional year.<\/p>\n<h2>How to Use UAE Gratuity Calculator<\/h2>\n<p>You can use UAE Gratuity Calculator to calculate your end-of-service gratuity by following the steps bellow:<\/p>\n<ul>\n<li>Input your <label for=\"salary\"><strong>Last drawn basic salary<\/strong>.<\/label><\/li>\n<li>Select your <label for=\"first_date\"><strong>First working day<\/strong> from the calendar.<\/label><\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-11437\" src=\"https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.48-PM-1-584x400.jpeg\" alt=\"How to Use UAE Gratuity Calculator\" width=\"584\" height=\"400\" srcset=\"https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.48-PM-1-584x400.jpeg 584w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.48-PM-1-360x247.jpeg 360w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.48-PM-1.jpeg 740w\" sizes=\"auto, (max-width: 584px) 100vw, 584px\" \/><\/p>\n<ul>\n<li>Select your <strong>Last\u00a0<\/strong><label for=\"first_date\"><strong>working day<\/strong> from the calendar.<\/label><\/li>\n<li>Select the <label for=\"contract\"><strong>Type of contract<\/strong> from the Dropdown list.<\/label><\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-11435\" src=\"https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.49-PM-600x368.jpeg\" alt=\"How to Use UAE Gratuity Calculator\" width=\"600\" height=\"368\" srcset=\"https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.49-PM-600x368.jpeg 600w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.49-PM-360x221.jpeg 360w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.49-PM.jpeg 728w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<ul>\n<li>Select the <strong><label for=\"termination\">Reason for exit <\/label><\/strong><label for=\"contract\">from the Dropdown list.<\/label><\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-11439\" src=\"https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.48-PM-600x297.jpeg\" alt=\"How to Use UAE Gratuity Calculator\" width=\"600\" height=\"297\" srcset=\"https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.48-PM-600x297.jpeg 600w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.48-PM-768x380.jpeg 768w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.48-PM-360x178.jpeg 360w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.48-PM.jpeg 776w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<ul>\n<li>Click &#8220;<strong>Calculate<\/strong> <strong>Gratuity<\/strong>&#8220;.<\/li>\n<\/ul>\n<h2>How Gratuity in UAE is Calculated for Limited Contract<\/h2>\n<p>The Formula used for the Calculation of Gratuity for Limited Contract is as following:<\/p>\n<ul>\n<li><strong>Daily wage<\/strong> = Elementary pay \u00f7 30.<\/li>\n<li><strong>1-year gratuity owed<\/strong> = Daily wage x 21.<\/li>\n<li><strong>Total gratuity owed<\/strong> = 1-year gratuity owed x years of service.<\/li>\n<\/ul>\n<h2>How to Calculate Gratuity in UAE for Unlimited Contract<\/h2>\n<p>The Formula used for the Calculation of Gratuity for Unlimited Contract is as following:<\/p>\n<ul>\n<li><strong>Daily wage<\/strong> = Elementary pay \u00f7 30.<\/li>\n<li><strong>1-year gratuity owed<\/strong> = Daily wage x 21.<\/li>\n<li><strong>Total gratuity owed<\/strong> = 1-year gratuity owed x years of service.<\/li>\n<li><strong>Total gratuity owed \u00f7 3<\/strong> = One-third of total gratuity owed.<\/li>\n<li>One- third of gratuity owed for 1-3 years of service.<\/li>\n<li>Two- third of gratuity owed for 3-5 years of service.<\/li>\n<li>After the end of 5 years, remuneration of the total gratuity owed may occur.<\/li>\n<\/ul>\n<h2>Who is Eligible for Gratuity in UAE<\/h2>\n<p>The following are the criteria for an employee to be eligible for end-of-service gratuity in the UAE:<\/p>\n<ul>\n<li>The minimum length of service must be at least one year of continuous service.<\/li>\n<li><strong>Continuous service:<\/strong> The employee&#8217;s service must be continuous, with certain exceptions for leave.<\/li>\n<li><strong>Type of contract:<\/strong> Rules differ between fixed-term and unlimited-term contracts.<\/li>\n<li>Employees who resign before completing one year of service are not entitled to end-of-service gratuity.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-11443\" src=\"https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM-600x314.jpeg\" alt=\"Who is Eligible for Gratuity in UAE\" width=\"600\" height=\"314\" srcset=\"https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM-600x314.jpeg 600w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM-768x402.jpeg 768w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM-360x188.jpeg 360w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM.jpeg 1024w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<h2>Key Factors Influencing Gratuity Calculation\u00a0in UAE<\/h2>\n<p>The following are the factors that affect the method of calculating gratuity in the UAE:<\/p>\n<ul>\n<li><strong>Basic Salary:<\/strong> End-of-service gratuity is calculated based on the basic salary, excluding allowances, commissions, and any bonuses.<\/li>\n<li><strong>Years of Service:<\/strong> The number of years of service affects the final amount of the end-of-service gratuity. The longer the service, the higher the gratuity.<\/li>\n<li><strong>Type of Contract:<\/strong> The method of calculating the end-of-service gratuity for employees with limited contracts differs from that for employees with unlimited contracts.<\/li>\n<li><strong>Resignation or Termination of Service:<\/strong> An employee&#8217;s resignation or termination of service affects their entitlement to end-of-service gratuity under UAE Labor Law.<\/li>\n<\/ul>\n<h2>Gratuity Rules for Unlimited Contracts in UAE<\/h2>\n<p>The following are the rules for calculating\u00a0Gratuity Rules for Unlimited Contracts in UAE:<\/p>\n<ul>\n<li><strong>In the event of resignation:<\/strong>\n<ul>\n<li><strong>Less than one year of service:<\/strong> Employees are not entitled to an end-of-service gratuity.<\/li>\n<li><strong>From one to three years of service:<\/strong> Employees are entitled to one-third of their basic salary for each year of service.<\/li>\n<li><strong>From three to five years of service:<\/strong> Employees are entitled to two-thirds of their basic salary for each year of service.<\/li>\n<li><strong>After five years of service:<\/strong> Employees are entitled to 21 days of basic salary for each of the first five years of service, and 30 days of basic salary for each additional year of service.<\/li>\n<\/ul>\n<\/li>\n<li><strong>In the event of termination of service:<\/strong>\n<ul>\n<li><strong>Less than one year of service:<\/strong> Employees are not entitled to any end-of-service gratuity.<br \/>\nFrom one to five years of service: The end-of-service gratuity is calculated based on 21 days of basic salary for each year of service.<\/li>\n<li><strong>More than five years of service:<\/strong> The end-of-service gratuity is calculated based on 21 days of basic salary for each year of service.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h2>Gratuity Rules for Limited Contracts in UAE<\/h2>\n<p>The following are the rules for calculating Gratuity Rules for limited Contracts in UAE:<\/p>\n<ul>\n<li><strong>Less than one year of service:<\/strong> The employee is not entitled to any end of service gratuity.<\/li>\n<li><strong>From one to five years of service:<\/strong> The employee is entitled to 21 days of basic salary for each year of service.<\/li>\n<li><strong>More than five years of service:<\/strong> The employee is entitled to 21 days of basic salary for the first five years of service, and 30 days of basic salary for each additional year.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-11445 size-medium\" src=\"https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM-1-600x338.jpeg\" alt=\"Gratuity Rules for Limited Contracts in UAE\" width=\"600\" height=\"338\" srcset=\"https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM-1-600x338.jpeg 600w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM-1-1024x576.jpeg 1024w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM-1-768x432.jpeg 768w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM-1-1536x864.jpeg 1536w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM-1-360x203.jpeg 360w, https:\/\/emirateseportal.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-21-at-12.57.45-PM-1.jpeg 1600w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<h2>Common Mistakes in UAE Gratuity Calculations<\/h2>\n<p>Here are some mistakes that employees and employers should avoid when calculating their end-of-service gratuity:<\/p>\n<ul>\n<li>Adding allowances and benefits to the end-of-service gratuity. End-of-service gratuity is calculated based on basic salary only.<\/li>\n<li>Incorrectly calculating length of service. Ensure that length of service is included to reflect continuous employment only.<\/li>\n<li>Sometimes, employees and employers misunderstand the type of employment contract, leading to incorrect calculations of the end-of-service gratuity.<\/li>\n<\/ul>\n<h2>Additional Gratuity Benefits in UAE<\/h2>\n<p>After the end of service, employees in UAE are entitled to additional end-of-service benefits in addition to their end-of-service gratuity, such as:<\/p>\n<ul>\n<li><strong>Unused annual leave pay:<\/strong> Compensation for any unused leave.<\/li>\n<li><strong>Accrued salaries:<\/strong> Employers must repay any outstanding payments before the end of the notice period.<\/li>\n<li><strong>Other service benefits:<\/strong> These benefits may include allowances for long-term employees based on their employment contract.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>You can calculate your Gratuity depending on UAE labor law via the following Calculator: What is Gratuity in UAE UAE law entitles every employee to an end-of-service gratuity (EOS) payment,&#8230;<\/p>\n","protected":false},"author":4,"featured_media":11431,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[26],"tags":[172],"class_list":["post-11424","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-services","tag-gratuity-calculator"],"acf":[],"views":1778,"_links":{"self":[{"href":"https:\/\/emirateseportal.com\/en\/wp-json\/wp\/v2\/posts\/11424","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/emirateseportal.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/emirateseportal.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/emirateseportal.com\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/emirateseportal.com\/en\/wp-json\/wp\/v2\/comments?post=11424"}],"version-history":[{"count":17,"href":"https:\/\/emirateseportal.com\/en\/wp-json\/wp\/v2\/posts\/11424\/revisions"}],"predecessor-version":[{"id":16495,"href":"https:\/\/emirateseportal.com\/en\/wp-json\/wp\/v2\/posts\/11424\/revisions\/16495"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/emirateseportal.com\/en\/wp-json\/wp\/v2\/media\/11431"}],"wp:attachment":[{"href":"https:\/\/emirateseportal.com\/en\/wp-json\/wp\/v2\/media?parent=11424"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/emirateseportal.com\/en\/wp-json\/wp\/v2\/categories?post=11424"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/emirateseportal.com\/en\/wp-json\/wp\/v2\/tags?post=11424"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}