@extends('admin.layouts.app') @section('panel')
@csrf @lang('Name') @lang('Category') | @lang('Service Type') @lang('Transaction Amount') @lang('Charge') @lang('Rate') @php $counter = 0; @endphp @foreach ($billers as $item) @if (!in_array($item->id, $existingCompanyNames)) @php $counter++; @endphp {{ $item->name ?? 'N/A' }}
{{ $item->type ?? 'N/A' }} {{ $item->serviceType ?? 'N/A' }}
@if ($item->denominationType == 'RANGE') {{ showAmount(@$item->minInternationalTransactionAmount ?? 0) }} - {{ showAmount($item->maxInternationalTransactionAmount ?? 0) }} @else @lang('FIXED') @endif {{ showAmount($item->internationalTransactionFee ?? 0) }} 1 {{ __(gs('cur_text')) }} = {{ getAmount($item->fx->rate ?? 0) }} {{ $item->countryCode }} @endif @endforeach @if ($counter == 0)
@lang('No billers available') @lang('There are no available data to display on this table at the moment.')
@endif

@lang('Fixed Amount')

@endsection @push('breadcrumb-plugins')
@endpush @push('script') @endpush