@if(deals.length){

{{ data?.title }}

@if(data?.label){
circle
{{ data?.label }}
}
@for(deal of deals; track deal){ @if(deal?.status && !!deal.remainingTime){

{{ deal?.product?.name }}

{{ deal?.product?.sale_price! | currencySymbol }}{{ deal?.product?.price! | currencySymbol }}

{{ 'sold' | translate }} : {{ deal?.product?.quantity }} {{ 'items' | translate }} {{ 'hurry_up_offer_end_in' | translate }}
@if(deal.remainingTime.seconds >= 0){
  • {{ deal?.remainingTime?.days }}
  • {{ deal?.remainingTime?.hours }}
  • {{ deal?.remainingTime?.minutes }}
  • {{ deal?.remainingTime?.seconds }}
}@else {

{{(deal.remainingTime.seconds < 0 ? 'offer_closed' : '') | translate }}

}
} }
}