Turkish Lezzet House

Halal - Muslim Owned Halal - Muslim Owned

Turkish Kebab House serves authentic Turkish cuisine which are freshly made such as Kebabs, Kofte, Falafel, Pide and special homemade tombik.

9296 5026

Photos

See all →

What's Recommended Here

Add →

No recommendations yet. Be the first.

Outlets

Advertisement
Advertisement
3 Temasek Boulevard, #B1-105 (East Wing), Singapore 038983
9296 5026

Reviews

Add →

No reviews yet. Be the first.

Advertisement

Tags


G
function pvToggle(btn) { btn.disabled = true; var placeId = btn.dataset.placeId; var status = btn.dataset.status; fetch('/u/explore/toggle', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-CSRF-TOKEN': document.querySelector('meta[name="csrf-token"]').content, 'Accept': 'application/json', }, body: JSON.stringify({ placeID: parseInt(placeId), status: parseInt(status) }), }) .then(r => r.json()) .then(data => { btn.disabled = false; btn.classList.toggle('active', data.active); var icon = btn.querySelector('i'); if (status === '1') { icon.className = data.active ? 'fas fa-heart' : 'far fa-heart'; } else if (status === '3') { icon.className = data.active ? 'fas fa-bookmark' : 'far fa-bookmark'; } }) .catch(() => { btn.disabled = false; }); }