العربية
Bannu Pulao

Bannu Pulao

Choose your preferred card size

Most popular 3

Special 3

Karahi 4

Bannu Pulao 3

BBQ 8

Bread 2

Cold beverages 7

Desserts 2

Download the Bannu Pulao 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');