{{-- resources/views/settings/currencies.blade.php --}} @extends('layouts.app') @section('title', 'Currencies') @section('page_title', 'Currencies') @section('page_subtitle', 'Manage accepted currencies and exchange rates') @section('content') @include('settings.partials.nav')
{{-- Current currencies --}}
Active Currencies
@if($currencies->isEmpty())

No currencies configured

@else
@foreach($currencies as $currency) @endforeach
Code Name Symbol Exchange Rate Base Active
{{ $currency->code }} {{ $currency->name }} {{ $currency->symbol }}
@csrf @method('PUT') is_base ? 'readonly' : '' }}> @if(!$currency->is_base) @endif
@if($currency->is_base) Base @else
@csrf @method('PUT')
@endif
@if($currency->is_active) @else @endif @if(!$currency->is_base)
@csrf @method('DELETE')
@endif
@endif
{{-- Add currency --}}
Add Currency
@csrf
@endsection @push('scripts') @endpush