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

{{ __('Currencies') }}

@hasPermission('admin.currency.create') {{ __('Add Currency') }} @endhasPermission
@forelse ($currencies as $currency) @empty @endforelse
{{ __('Name') }} {{ __('Symbol') }} {{ __('Rate') }} {{ __('Action') }}
{{ $currency->name }} {{ $currency->symbol }} {{ $currency->rate }} @if ($currency->is_default) ({{ __('Default') }}) @else {{ __('(From ') . ($defaultCurrency?->name ?? 'USD') . ')' }} @endif @hasPermission('admin.currency.edit') edit @endhasPermission @hasPermission('admin.currency.destroy') delete @endhasPermission
{{ __('No Data Found') }}
{{ $currencies->links() }}
@endsection