@extends('admin.layouts.app') @section('page_title', __('Manage Currency')) @section('content')

@lang("Currencies")

@forelse($currencies as $key => $currency) @empty @endforelse
@lang("Sl") @lang('Name') @lang('Conversion Rate') @lang('Status') @lang('Action')
{{ $key + 1 }} @lang($currency->name) {{ number_format($currency->conversion_rate, 2) ." ".$currency->code }} {{ $currency->status == 1 ? 'Active' : 'Inactive' }}
Image Description Image Description

@lang("No data to show")

@if($currencies->hasPages()) @endif
@include('admin.currency.components.delete_modal') @include('admin.currency.components.activate_deactivate') @include('admin.currency.components.auto_currency_update') @endsection @push('css-lib') @endpush @push('js-lib') @endpush @push('script') @endpush