@if(!empty($cashbackRules) and count($cashbackRules) and !empty($itemPrice) and $itemPrice > 0) @foreach($cashbackRules as $cashbackRule)
{{ trans('update.get_cashback') }}
@if(!empty($itemType) and $itemType == 'meeting') @if($cashbackRule->min_amount)
{{ trans('update.by_reserving_a_this_meeting_you_will_get_amount_as_cashback_for_orders_more_than_min_amount',['amount' => handlePrice($cashbackRule->getAmount($itemPrice)), 'min_amount' => handlePrice($cashbackRule->min_amount)]) }}
@else
{{ trans('update.by_reserving_a_this_meeting_you_will_get_amount_as_cashback',['amount' => handlePrice($cashbackRule->getAmount($itemPrice))]) }}
@endif @else @if($cashbackRule->min_amount)
{{ trans('update.by_purchasing_this_product_you_will_get_amount_as_cashback_for_orders_more_than_min_amount',['amount' => handlePrice($cashbackRule->getAmount($itemPrice)), 'min_amount' => handlePrice($cashbackRule->min_amount)]) }}
@else
{{ trans('update.by_purchasing_this_product_you_will_get_amount_as_cashback',['amount' => handlePrice($cashbackRule->getAmount($itemPrice))]) }}
@endif @endif
@endforeach @endif