@extends('layouts.app') @section('content')

{{ _lang('Base Currency exchange rate always 1.00') }}

{{ _lang('Currency List') }} {{ _lang('Add New') }}
@foreach($currencys as $currency) @endforeach
{{ _lang('Name') }} {{ _lang('Exchange Rate') }} {{ _lang('Base Currency') }} {{ _lang('Status') }} {{ _lang('Action') }}
{{ $currency->name }} {{ $currency->exchange_rate }} {!! $currency->base_currency == 1 ? xss_clean(show_status(_lang('Yes'),'success')) : xss_clean(show_status(_lang('No'),'danger')) !!} {!! xss_clean(status($currency->status)) !!} @if($currency->base_currency == 0 )
{{ csrf_field() }}
@else @endif
@endsection