العربية
Sub Falafel

Sub Falafel

Choose your preferred card size

Meals 7

Falafel 4

Potato Plates 2

Beverages 11

Salads 5

Grills 5

Shawarma 5

Download the Sub Falafel App
Order faster and track your orders more easily with our app.
Your Cart
Your cart is empty

Select items from the menu

// ── Language support ────────────────────────────── if (session_status() == PHP_SESSION_NONE) session_start(); if (!isset($activeCountry)) $activeCountry = resolveActiveCountry(); if (!isset($activeCountryCode)) $activeCountryCode = $activeCountry['code']; $supportsArabic = $activeCountry['supports_arabic'] ?? false; if (!$supportsArabic && function_exists('countrySupportsArabic')) { $supportsArabic = countrySupportsArabic($activeCountryCode); } $lang = $_GET['lang'] ?? null; if ($lang === null && isset($_COOKIE['livvent_lang'])) $lang = $_COOKIE['livvent_lang']; if ($lang !== 'ar' && $lang !== 'en') $lang = 'en'; if (!$supportsArabic) $lang = 'en'; $isRTL = ($lang === 'ar');