@extends('layouts.admin') @section('title', 'Exchange Rates Management') @section('content')

Exchange Rates Management

Add Exchange Rate
Clear Filters
@if($exchangeRates->count())
@foreach($exchangeRates as $rate) @endforeach
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') }}
@if($rate->is_active)
@csrf @method('DELETE')
@else
@csrf @method('PUT')
@endif
Showing {{ $exchangeRates->firstItem() }} to {{ $exchangeRates->lastItem() }} of {{ $exchangeRates->total() }} exchange rates
{{ $exchangeRates->links() }}
@else
No Exchange Rates Found

No exchange rates have been added yet.

Add First Exchange Rate
@endif
@endsection