@extends('dashboard.layouts.app') @section('content') @if(session('success')) @endif
Currency Rates Management
@can('finance_currency_rate_store')
Add New Currency Rate
@csrf @error('currency'){{ $message }}@enderror
@error('rate'){{ $message }}@enderror
@error('is_default'){{ $message }}@enderror
@endcan
Current Currency Rates
@canany(['finance_currency_rate_update', 'finance_currency_rate_destroy', 'finance_currency_rate_history']) @endcan @forelse($rates as $rate) @canany(['finance_currency_rate_update', 'finance_currency_rate_destroy', 'finance_currency_rate_history']) @endcan @empty @endforelse
# Currency Rate Default Created ByActions
{{ $loop->iteration }} {{ $rate->currency }} {{ number_format($rate->rate, 2) }} @if($rate->is_default) Yes @else No @endif {{ $rate->createdBy->full_name ?? '' }} @can('finance_currency_rate_history') History @endcan @can('finance_currency_rate_update') @endcan @can('finance_currency_rate_destroy') @endcan
No currency rates found.
@push('scripts') @endpush @endsection