XW Western Grill

Halal Certified Halal Certified

XW Western Grill is a fusion Western restaurant serving steaks and pasta. Each main order includes a FREE all-you-can-eat salad bar.


Photos

See all →

What's Recommended Here

Add →

Outlets

Advertisement
2 Tampines Central 5, #02-20, Singapore 529509
60 Airport Boulevard, #03-23, Singapore 819643
JEM
50 Jurong Gateway Road, #04-25, Singapore 608549
930 Yishun Ave 2, #01-101, Singapore 769098
252 North Bridge Road, #B1-44B, Singapore 179103

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; }); }