@extends('layouts.clivax') @section('title', 'Currency Exchange Rates') @section('content')
Currency Exchange Rates
Add Currency
@if(session('success')) @endif @if(session('error')) @endif
@forelse($currencies as $currency) @empty @endforelse
Code Name Symbol Buying Rate Selling Rate Actions
{{ $currency->code }} {{ $currency->name }} @if($currency->symbol) {{ $currency->symbol }} @else - @endif {{ number_format($currency->buying_exchange_rate, 4) }} KES {{ number_format($currency->selling_exchange_rate, 4) }} KES
@if($currency->code !== 'KES')
@csrf @method('DELETE')
@endif

No currencies found

Add First Currency
@if($currencies->hasPages()) @endif
@endsection @push('scripts') @endpush