@extends('backend.settings.setting-layout') @section('title') {{ __('currency_list') }} @endsection @section('breadcrumbs')

{{ __('currency') }} {{ __('settings') }}

@endsection @section('website-settings')
@csrf

{{ __('currency_list') }}

{{ __('create') }}
@forelse ($currencies as $key => $currency) @empty @endforelse
# {{ __('name') }} {{ __('code') }} {{ __('symbol') }} {{ __('rate') }} {{ __('position') }} {{ __('action') }}
{{ $key + 1 }} {{ $currency->name }} @if (config('templatecookie.currency') == $currency->code) {{ __('default') }} @endif {{ $currency->code }} {{ $currency->symbol }} {{$currency->rate}} {{ ucfirst($currency->symbol_position) }} @if ($currency->code == 'USD') @endif @if ($currency->code != 'USD')
@method('DELETE') @csrf
@endif
@if ($currencies->total() > $currencies->count()) @endif
@endsection @section('script') @endsection