@extends('layouts.app') @section('css') {{-- Data table --}} {{-- Select2 --}} @endsection @section('content')
@include('layouts.includes.finance_menu')
{{ __('Finance') }} >> {{ __('Currencies') }}
@if(Helpers::has_permission(Auth::user()->id, 'add_currency'))  {{ __('New Currency') }} @endif
@foreach ($currencyData as $data) @endforeach
{{ __('Name') }} {{ __('Symbol') }} {{ __('Rate') }} {{ __('Action') }}
{{ $data->name }} {{ $data->symbol }} {{ formatCurrencyAmount($data->exchange_rate) }} @if(Helpers::has_permission(Auth::user()->id, 'edit_currency'))   @endif @if(Helpers::has_permission(Auth::user()->id, 'delete_currency')) @if(!in_array($data->id,[$default_currency->id]))
{!! csrf_field() !!}
@endif @endif
@include('layouts.includes.message_boxes') @endsection @section('js') {!! translateValidationMessages() !!} @endsection