@can('massDelete', \App\Models\Currency::class)
|
@endcan
{{ $currency->iso_code }} |
{{ $currency->name }}
@if ($currency->active)
{{ trans('app.active') }}
{{-- --}}
@endif
|
{{ $currency->symbol }} |
{{ $currency->subunit }} |
{{ $currency->decimal_mark }}
|
{{ $currency->thousands_separator }}
|
@if (is_incevio_package_loaded('dynamic-currency'))
{{ get_formated_decimal($currency->exchange_rate, true, 3) }}
|
@endif
@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
|
@endforeach