@extends('layouts.new_theme') @section('content')

{{ __('Currencies') }}

{{-- --}}
@include('common.demo') @include('common.admin') @include('common.errors')

{{ __('List of Currencies') }} {{__('Add')}}

@if (!count($currencies))

{{ __('No data found') }} !!

{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.

@else
@foreach($currencies as $currency) @endforeach
{{ __('Prefix') }} {{ __('Currency') }}
{{ $currency->prefix }} {{ $currency->currency }}
@method('DELETE') @csrf

@endif
@endsection