@extends('backend.layouts.app') @section('content')
{{translate('Set Currency Formats')}}
@csrf
{{translate('System Default Currency')}}
@csrf
{{ translate('All Currencies') }}
@foreach ($currencies as $key => $currency) @endforeach
# {{translate('Currency name')}} {{translate('Currency symbol')}} {{translate('Currency code')}} {{translate('Exchange rate')}}(1 USD = ?) {{translate('Status')}} {{translate('Options')}}
{{ ($key+1) + ($currencies->currentPage() - 1)*$currencies->perPage() }} {{$currency->name}} {{$currency->symbol}} {{$currency->code}} {{$currency->exchange_rate}}
{{ $currencies->appends(request()->input())->links() }}
@endsection @section('modal') @include('modals.delete_modal') @endsection @section('script') @endsection