|
|
{{ Number(sub_total).toLocaleString('en-US', {
style: 'currency',
currency: 'PHP'
})
.replace('PHP', '₱') }}
|
|
|
{{ Number(parseFloat(delivery_fee)).toLocaleString('en-US', {
style: 'currency',
currency: 'PHP'
})
.replace('PHP', '₱') }}
|
|
|
{{ Number(parseFloat(sub_total) + parseFloat(delivery_fee)).toLocaleString('en-US', {
style: 'currency',
currency: 'PHP'
})
.replace('PHP', '₱') }}
|