@extends('admin.layouts.master') @section('content')

{{ trans('app.currencies') }}

@can('create', \App\Models\Currency::class) {{ trans('app.add_currency') }} @endcan
@can('massDelete', \App\Models\Currency::class) @endcan @if (is_incevio_package_loaded('dynamic-currency')) @endif @foreach ($currencies as $currency) @can('massDelete', \App\Models\Currency::class) @endcan @if (is_incevio_package_loaded('dynamic-currency')) @endif @endforeach
{{ trans('app.iso_code') }} {{ trans('app.name') }} {{ trans('app.symbol') }} {{ trans('app.subunit') }} {{ trans('app.decimal_mark') }} {{ trans('app.thousands_separator') }}{{ trans('dynamic-currency::lang.exchange_rate') }} @include('partials._addon_badge'){{ trans('app.option') }}
{{ $currency->iso_code }} {{ $currency->name }} @if ($currency->active) {{ trans('app.active') }} {{-- --}} @endif {{ $currency->symbol }} {{ $currency->subunit }} {{ $currency->decimal_mark }} {{ $currency->thousands_separator }} {{ get_formated_decimal($currency->exchange_rate, true, 3) }} @can('update', $currency)   @endcan @can('delete', $currency) {!! Form::open(['route' => ['admin.setting.currency.destroy', $currency->id], 'method' => 'delete', 'class' => 'data-form']) !!} {!! Form::button('', ['type' => 'submit', 'class' => 'confirm ajax-silent', 'title' => trans('app.delete'), 'data-toggle' => 'tooltip', 'data-placement' => 'top']) !!} {!! Form::close() !!} @endcan
@endsection