@extends('admin.layouts.app') @section('panel')
@lang('Name') @lang('Brand') @lang('Denomination Type') @lang('Recipient Amount') @lang('Sender Amount') @lang('Exchange Rate') @lang('Status') @forelse($products as $product) {{ $product->product_name }} {{ $product->brand_name }} {{ ucfirst($product->denomination_type) }} @if ($product->denomination_type == 'RANGE') {{ getAmount($product->min_recipient_denomination) }} - {{ getAmount($product->max_recipient_denomination) }} {{ $product->recipient_currency_code }} @else @forelse (@$product->fixed_recipient_denominations ?? [] as $fix) {{ getAmount($fix) }} {{ $product->recipient_currency_code }} @if (!$loop->last) , @endif @empty @lang('N/A') @endforelse @endif @if ($product->denomination_type == 'RANGE') {{ getAmount($product->min_sender_denomination) }} - {{ getAmount($product->max_sender_denomination) }} {{ $product->sender_currency_code }} @else @forelse (@$product->fixed_sender_denominations?? [] as $fix) {{ getAmount($fix) }} {{ $product->sender_currency_code }} @if (!$loop->last) , @endif @empty @lang('N/A') @endforelse @endif 1 {{ $product->recipient_currency_code }} = {{ getAmount($product->recipient_to_sender_exchange_rate) }} {{ $product->sender_currency_code }}
@empty @endforelse
@if ($products->hasPages()) {{ paginateLinks($products) }} @endif
@endsection @push('breadcrumb-plugins') @endpush