@extends('layouts.admin.app') @section('title', translate('Currency')) @push('css_or_js') @endpush @section('content')
@csrf





@foreach (\App\Models\Currency::latest()->get() as $key => $currency) @endforeach
{{ translate('#sl') }} {{ translate('Country') }} {{ translate('Code') }} {{ translate('Symbol') }} {{ translate('Ex. Rate') }} {{ translate('Action') }}
{{-- --}} {{-- --}}
{{ $key + 1 }} {{ $currency['country'] }} {{ $currency['currency_code'] }} {{ $currency['currency_symbol'] }} {{ $currency['exchange_rate'] }}
@endsection @push('script_2') @endpush