@extends('admin.layouts.app') @section('panel') @lang('Name') @lang('Amount') @lang('Charge') @lang('Rate') @lang('Status') @lang('Action') @forelse($companies as $company)
{{ __($company->name) }} {{ __(@$company->category->formatted_name) }}
@if (@$company->denomination_type == 'RANGE') {{ showAmount(@$company->minimum_amount) }} - {{ showAmount(@$company->maximum_amount) }} @else @lang('FIXED') @endif @if (!$company->fixed_charge && !$company->percent_charge) @lang('Not Set') @else {{ showAmount($company->fixed_charge) }} + {{ getAmount($company->percent_charge) }}% @endif 1 {{ __(gs('cur_text')) }} = {{ getAmount($company->rate) }} {{ $company->currency_code }} @empty @endforelse
@if ($companies->hasPages()) {{ paginateLinks($companies) }} @endif

@lang('Add Company')

@csrf
{{ __(gs('cur_text')) }}
{{ __(gs('cur_text')) }}
{{ __(gs('cur_text')) }}
%

@lang('Fixed Amount')

@endsection @push('breadcrumb-plugins')
@lang('Fetch Companies')
@endpush @push('script') @endpush