@extends('layouts.admin') @section('title', $currency->name . ' - Currency Details') @section('content')
| Currency Name | {{ $currency->name }} |
| Currency Code | {{ $currency->code }} @if($currency->code == 'KES') Base Currency @endif |
| Symbol | {{ $currency->symbol ?? '—' }} |
| Decimal Places | {{ $currency->decimal_places }} |
| Status | @if($currency->active) Active @else Inactive @endif |
| Created | {{ $currency->created_at->format('M j, Y H:i') }} |
| Last Updated | {{ $currency->updated_at->format('M j, Y H:i') }} |
No exchange rates found for this currency.
Add Exchange Rate| Base Currency | Target Currency | Exchange Rate | Effective Date | Status | Created | Actions |
|---|---|---|---|---|---|---|
| {{ $rate->base_currency }} | {{ $rate->target_currency }} | 1 {{ $rate->target_currency }} = {{ number_format($rate->rate, 4) }} {{ $rate->base_currency }} | {{ $rate->effective_date->format('M j, Y') }} | @if($rate->is_active) Active @else Inactive @endif | {{ $rate->created_at->format('M j, Y') }} |
No exchange rates have been added for this currency yet.
Add First Exchange Rate