Delifrance

Halal Certified Halal Certified

Photos

See all →

What's Recommended Here

Add →

Outlets

Advertisement
1 Woodlands Square, #B1-21, Singapore 738099
6462 6447
1 Pasir Ris Close, #02-231, Singapore 519599
480 Toa Payoh Lorong 6, #01-10, Singapore 310480
6353 6233
JEM
50 Jurong Gateway Road, #B1-K15, Singapore 608549
100 Bukit Timah Road, #01-09, Singapore 229899
21 Choa Chu Kang Avenue 4, #03-12, Singapore 689812
6767 0751
1 Jurong East Street 21, #02-33 (Tower A), Singapore 609606
930 Yishun Ave 2, #01-168 (South Wing), Singapore 769098
1 Lower Kent Ridge Road, #04-11, Singapore 119082
1 Lower Kent Ridge Road, #04-11, Singapore 119082
110 Sengkang East Way, Singapore 544886
10 Eunos Road 8 , #01-141A, Singapore 408600
3 Temasek Boulevard, #02-600 (Tower 3), Singapore 038983
10 Tampines Central 1, #03-K3, Singapore 529536
83 Punggol Central, #01-17A, Singapore 828761

Reviews

Add →

No reviews yet. Be the first.

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