@extends('tenant.settings.general.all-general-settings') @section('breadcrumb') @include('tenant.layouts.breadcrumb', [ 'items' => [ __('breadcrumb.general_settings') => route('tenant.settings.general.show-page', ['type' => 'company-information']), __('breadcrumb.currencies') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'settings.general.currencies']) @endsection @section('settings-content')

@lang('settings/general/currencies.currencies')

@forelse ($currencies as $currency) @php $is_default = $default_currency_id == $currency->id; @endphp @empty @endforelse
# @lang('settings/general/currencies.currency') @lang('settings/general/currencies.arabic_symbole') @lang('settings/general/currencies.english_symbole') @lang('settings/general/currencies.countries') @lang('settings/general/currencies.exchange_rate')
@lang('settings/general/currencies.procedures')
{{ $loop->iteration }} {{ $currency->name }} {{ $currency->ar_symbol }} {{ $currency->symbol }} @foreach ($currency->countries as $country) - {{ $country->ar_name }}
@endforeach
@if (!$is_default) @else @lang('settings/general/currencies.default_currency') @endif
@lang('settings/general/currencies.no_currencies_yet')
@csrf
@endsection @push('script') @endpush