Total Exchange Rates
{{ $currency->exchangeRates()->count() }}
Active Exchange Rates
{{ $currency->exchangeRates()->where('is_active', true)->count() }}
Latest Rate Update
@if($currency->latestRate)
{{ $currency->latestRate->effective_date->format('M j, Y') }}
@else
Never
@endif
Created
{{ $currency->created_at->format('M j, Y') }}