{"id":3110,"date":"2025-11-29T04:23:33","date_gmt":"2025-11-29T01:23:33","guid":{"rendered":"https:\/\/menbremirates.com\/?p=3110"},"modified":"2025-11-29T04:23:35","modified_gmt":"2025-11-29T01:23:35","slug":"uae-gratuity-calculator-2025-a-comprehensive-guide","status":"publish","type":"post","link":"https:\/\/menbremirates.com\/en\/3110\/","title":{"rendered":"UAE Gratuity Calculator 2026: A Comprehensive Guide"},"content":{"rendered":"<p>Employees in the UAE are legally entitled to end-of-service gratuity upon termination of their employment. To qualify, several conditions must be met. Therefore, use the UAE end-of-service gratuity calculator to ensure you are fully covered.<\/p>\n<h2>UAE Gratuity Calculator<\/h2>\n<p>Below you can calculate your end-of-service gratuity according to the UAE Labour Law using the following calculator:<\/p>\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        <div class=\"h3\">Your Gratuity amount will be<\/div>\r\n        <div class=\"h2\" id=\"result\"><\/div>\r\n        <div class=\"h3\" id=\"working-period\"><\/div>\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<h2>What is Gratuity in UAE<\/h2>\n<p>End of service gratuity (EOS) in the UAE is a mandatory amount that employers are required to pay to their employees upon termination of their employment. This amount is calculated based on the employee&#8217;s length of service and their last basic salary.<\/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 online, follow these simple steps:<\/p>\n<ul>\n<li><strong>Step 1:<\/strong> Input your <strong>Last drawn basic salary<\/strong>.<\/li>\n<li><strong>Step 2:<\/strong> Select your <strong>First working day<\/strong> from the calendar.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-3124\" src=\"https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.36-AM-532x400.jpeg\" alt=\"How to Use UAE Gratuity Calculator\" width=\"532\" height=\"400\" srcset=\"https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.36-AM-532x400.jpeg 532w, https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.36-AM-360x270.jpeg 360w, https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.36-AM.jpeg 728w\" sizes=\"auto, (max-width: 532px) 100vw, 532px\" \/><\/p>\n<ul>\n<li><strong>Step 3:<\/strong> Select your <strong>Last\u00a0working day<\/strong> from the calendar.<\/li>\n<li><strong>Step 4:<\/strong> Select the <strong>Type of contract<\/strong> from the Dropdown list.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-3120\" src=\"https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.41-AM-539x400.jpeg\" alt=\"How to Use UAE Gratuity Calculator\" width=\"539\" height=\"400\" srcset=\"https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.41-AM-539x400.jpeg 539w, https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.41-AM-360x267.jpeg 360w, https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.41-AM.jpeg 732w\" sizes=\"auto, (max-width: 539px) 100vw, 539px\" \/><\/p>\n<ul>\n<li><strong>Step 5:<\/strong> Select the <strong>Reason for exit <\/strong>from the Dropdown list.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-3118\" src=\"https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.41-AM-1-565x400.jpeg\" alt=\"How to Use UAE Gratuity Calculator\" width=\"565\" height=\"400\" srcset=\"https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.41-AM-1-565x400.jpeg 565w, https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.41-AM-1-768x544.jpeg 768w, https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.41-AM-1-360x255.jpeg 360w, https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.41-AM-1.jpeg 772w\" sizes=\"auto, (max-width: 565px) 100vw, 565px\" \/><\/p>\n<ul>\n<li><strong>Step 6:<\/strong> Click &#8220;<strong>Calculate<\/strong> <strong>Gratuity<\/strong>&#8220;.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-3122\" src=\"https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.38-AM-1-556x400.jpeg\" alt=\"How to Use UAE Gratuity Calculator\" width=\"556\" height=\"400\" srcset=\"https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.38-AM-1-556x400.jpeg 556w, https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.38-AM-1-360x259.jpeg 360w, https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.38-AM-1.jpeg 763w\" sizes=\"auto, (max-width: 556px) 100vw, 556px\" \/><\/p>\n<h2>Gratuity for UAE Nationals<\/h2>\n<p>End-of-Service Gratuity is a benefit paid by an employer to an employee. In the UAE, this benefit is calculated based on the employee&#8217;s completion of at least one year of service with the company. In this regard, one aspect that must be taken into account is the employee&#8217;s status within the company. For example, if the employee is a UAE national, the benefits granted to them in the private sector will be subject to the UAE&#8217;s pension and social security laws.<\/p>\n<h2>Gratuity for Foreigners in the UAE<\/h2>\n<p>For foreign employees, the employer must pay an end-of-service gratuity at the end of their service. This gratuity is paid in a lump sum. The following are the rules for paying end-of-service gratuity to foreign employees:<\/p>\n<ul>\n<li>Twenty-one days&#8217; salary for each year during the first five years of the employment relationship.<\/li>\n<li>Thirty days&#8217; salary for each year after the previous period.<\/li>\n<li>A foreign employee is entitled to calculate this proportional gratuity as a fraction, provided they have completed at least one year of continuous service.<\/li>\n<li>Unpaid absence days are not counted towards the length of service using the Dubai End of Service Gratuity Calculator.<\/li>\n<\/ul>\n<h2>Gratuity for Limited Contract Calculation Formula in UAE<\/h2>\n<p>In the UAE, end-of-service gratuity payment for limited contract employees is calculated according to the following formula:<\/p>\n<ul>\n<li><strong>Last basic salary \u00d7 21 days \u00d7 number of years of service.<\/strong><\/li>\n<\/ul>\n<p>For example, if an employee&#8217;s last basic salary was AED 5,000, and they worked for two years, the bonus amount would be as follows:<\/p>\n<ul>\n<li>AED 5,000 \u00d7 21 days \u00d7 2 years = AED 210,000<\/li>\n<\/ul>\n<h2>How to Calculate Gratuity in UAE for Unlimited Contract<\/h2>\n<p>End-of-service gratuity for employees on unlimited contracts in the UAE is calculated as follows:<\/p>\n<ul>\n<li>Calculate the employee&#8217;s basic salary.<\/li>\n<li>Calculate the number of years of service the employee has spent with the company.<\/li>\n<li>Multiply the number of years of service by 21 days of basic pay to calculate the end-of-service gratuity amount.<\/li>\n<li>Calculate the gratuity by multiplying the number of years of service by one month&#8217;s basic pay.<\/li>\n<li>Add the two amounts together to calculate the employee&#8217;s total gratuity amount.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.40-AM-600x338.jpeg\" alt=\"How to Calculate Gratuity in UAE for Unlimited Contract\" width=\"600\" height=\"338\" \/><\/p>\n<h2>Gratuity Calculation Examples in UAE<\/h2>\n<ul>\n<li>A worker with a basic salary of AED 5,000 and 6 years of service will get:<\/li>\n<\/ul>\n<p style=\"padding-left: 40px;\">(21 \u00d7 5,000 \u00d7 6) \u00f7 30 = AED 21,000<\/p>\n<ul>\n<li>Another example: A person with AED 7,000 basic salary and 10 years of service:<\/li>\n<\/ul>\n<p style=\"padding-left: 40px;\">(30 \u00d7 7,000 \u00d7 10) \u00f7 30 = AED 70,000<\/p>\n<h2>Factors affecting the gratuity amount in UAE<\/h2>\n<p>There are several factors affecting the calculation of the end-of-service gratuity, including the following:<\/p>\n<h3>Last Basic Salary<\/h3>\n<p>When calculating this bonus, only the employee&#8217;s last basic salary before the end of their contract is taken into account. Another point to note is that the basic salary does not include any additional benefits provided by the freelancer.<\/p>\n<h3>Type of Employment Contract<\/h3>\n<p>There are two types of employment contracts in the UAE: fixed-term contracts and indefinite-term contracts. Therefore, the rules for determining this amount using the UAE End-of-Service Gratuity Calculator vary depending on the type.<\/p>\n<h3>Employment Contract\u00a0Termination<\/h3>\n<p>In cases of termination, the following rules apply:<\/p>\n<ul>\n<li>Employees with between one and five years of service are entitled to 21 days of basic salary.<\/li>\n<li>Employees with more than five years of service are entitled to an end-of-service gratuity payment of 30 days starting from the fifth year.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.38-AM-600x338.jpeg\" alt=\"How to Terminate an Employment Contract\" width=\"600\" height=\"338\" \/><\/p>\n<h2>Unpaid Leave Implications for Gratuity in UAE<\/h2>\n<p>Unpaid leave is a period during which an employee does not receive their regular salary or additional benefits. With this arrangement, this type of gratuity is calculated based on actual days worked. Therefore, unpaid leave can have a direct impact on the final amount of this benefit. For example, if an employee spends a significant portion of their working time on unpaid leave, the amount of their end-of-service gratuity will be reduced accordingly.<\/p>\n<h2>Gratuity Rules in UAE<\/h2>\n<p>The new UAE Labor Law (Federal Law No. 8 of 1980) and its subsequent amendments define the latest end-of-service gratuity rules in the UAE. The gratuity amount is determined based on length of service as follows:<\/p>\n<ul>\n<li>If an employee has completed one or more years of service but does not exceed five years, the gratuity is equivalent to 21 days&#8217; wages for each year of service.<\/li>\n<li>If an employee has completed five or more years of service but does not exceed ten years, the gratuity is equivalent to 30 days&#8217; wages for each year of service.<\/li>\n<li>If an employee has completed ten or more years of service, the gratuity is equivalent to 45 days&#8217; wages for each year of service.<\/li>\n<li>The gratuity is calculated based on the employee&#8217;s basic salary, excluding any allowances or other benefits such as overtime pay, housing allowance, and health insurance.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/menbremirates.com\/wp-content\/uploads\/2025\/04\/WhatsApp-Image-2025-04-24-at-10.49.37-AM-600x314.jpeg\" alt=\"End-of-Service Gratuity Rules in the United Arab Emirates\" width=\"600\" height=\"314\" \/><\/p>\n<h2>The Maximum Gratuity in UAE<\/h2>\n<p>The maximum end-of-service gratuity in the UAE is calculated at 21 days of basic salary for each year of service, with a maximum of two years&#8217; salary for those who have completed more than two years of service.<\/p>\n<h2>Who is Not Eligible for Gratuity in UAE<\/h2>\n<p>In the UAE, the following individuals are not entitled to end-of-service gratuity:<\/p>\n<ul>\n<li>Employees with less than one year of service<\/li>\n<li>Non-Emirati employees<\/li>\n<li>Employees dismissed for disciplinary reasons<\/li>\n<li>Employees who resigned without prior notice<\/li>\n<li>Employees who voluntarily terminated their contracts<\/li>\n<li>Employees on unpaid leave<\/li>\n<li>Employees working on temporary contracts<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>UAE labor law requires employers to pay 21 days of their employees&#8217; basic salary for each of the first five years of service, and 30 days for each year thereafter. EOS is calculated by multiplying 21 days by the employee&#8217;s last basic salary. To estimate this gratuity, most employees use the UAE EOS calculator.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Employees in the UAE are legally entitled to end-of-service gratuity upon termination of their employment. To qualify, several conditions must be met. Therefore, use the UAE end-of-service gratuity calculator to&#8230;<\/p>\n","protected":false},"author":4,"featured_media":3137,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[30],"tags":[108],"class_list":["post-3110","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-services","tag-gratuity-calculator"],"acf":[],"views":399,"_links":{"self":[{"href":"https:\/\/menbremirates.com\/en\/wp-json\/wp\/v2\/posts\/3110","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/menbremirates.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/menbremirates.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/menbremirates.com\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/menbremirates.com\/en\/wp-json\/wp\/v2\/comments?post=3110"}],"version-history":[{"count":13,"href":"https:\/\/menbremirates.com\/en\/wp-json\/wp\/v2\/posts\/3110\/revisions"}],"predecessor-version":[{"id":4293,"href":"https:\/\/menbremirates.com\/en\/wp-json\/wp\/v2\/posts\/3110\/revisions\/4293"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/menbremirates.com\/en\/wp-json\/wp\/v2\/media\/3137"}],"wp:attachment":[{"href":"https:\/\/menbremirates.com\/en\/wp-json\/wp\/v2\/media?parent=3110"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/menbremirates.com\/en\/wp-json\/wp\/v2\/categories?post=3110"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/menbremirates.com\/en\/wp-json\/wp\/v2\/tags?post=3110"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}