@extends('backend.partials.master') @section('title') {{ __('settings.currency') }} {{ __('levels.list') }} @endsection @section('maincontent')

{{ __('settings.currency') }}

@if(hasPermission('currency_create'))
@endif
@if(hasPermission('currency_update') || hasPermission('currency_delete') ) @endif @php $i=1; @endphp @foreach($currencies as $currency) @if(hasPermission('currency_update') == true || hasPermission('currency_delete') == true ) @endif @endforeach
{{ __('levels.id') }} {{ __('levels.name') }} {{ __('settings.symbol') }} {{ __('settings.exchange_rate') }} {{ __('levels.status') }} {{ __('levels.position') }}{{ __('levels.actions') }}
{{$i++}} {{@$currency->name}} {{@$currency->symbol}} {{number_format(@$currency->exchange_rate,2)}} {!! @$currency->my_status!!} {{@$currency->position}}
{{ @$currencies->links() }}

{!! __('Showing') !!} {{ @$currencies->firstItem() }} {!! __('to') !!} {{ @$currencies->lastItem() }} {!! __('of') !!} {{ @$currencies->total() }} {!! __('results') !!}

@endsection()