@extends($activeTemplate . 'layouts.master') @section('content')
@csrf
@if ($product->denomination_type == 'RANGE') {{ getAmount($product->min_recipient_denomination) }} {{ $product->recipient_currency_code }} - {{ getAmount($product->max_recipient_denomination) }} {{ $product->recipient_currency_code }} @else
@forelse (@$product->fixed_recipient_denominations ?? [] as $fix) {{ getAmount($fix) }} {{ $product->recipient_currency_code }} @empty @lang('N/A') @endforelse
@endif
@endsection @push('script') @endpush @push('style') @endpush @push('breadcrumb-plugins') @lang('Back') @endpush