@extends('admin.layouts.app') @section('content') @can('update_currency_settings')
{{translate('System Default Currency')}}
@csrf
{{translate('Set Currency Formats')}}
@csrf
@php $symbol_format = get_setting('symbol_format'); @endphp
@php $no_of_decimals = get_setting('no_of_decimals'); @endphp
@endcan

{{translate('All Currencies')}}

@can('add_currencies') @endcan
{{ 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 }} @if($currency->id != 1 && auth()->user()->can('edit_currencies')) @endif @can('delete_currencies') @endcan
{{ $currencies->appends(request()->input())->links() }}
@endsection @section('modal') @include('modals.create_edit_modal') @include('modals.delete_modal') @endsection @section('script') @endsection