@extends('layouts.app') @section('title','Market Rates & Trends') @section('header-left')

Market Rates & Trends

@endsection @section('content')

Live Exchange Rates

Last updated: {{ now()->format('M d, Y h:i A') }}

Live
@foreach([['crypto','Cryptocurrency','currency_bitcoin'],['giftcard','Gift Cards','featured_play_list']] as [$cat, $label, $icon])
{{ $icon }}

{{ $label }}

@foreach($rates->where('category', $cat) as $rate)
{{ $cat === 'crypto' ? 'currency_bitcoin' : 'featured_play_list' }}

{{ $rate->asset_type }}

{{ $rate->category }}

₦{{ number_format($rate->rate, 0) }}

@if($rate->buy_rate)
Buy: ₦{{ number_format($rate->buy_rate, 0) }} Sell: ₦{{ number_format($rate->sell_rate, 0) }}
@endif
Exchange
@endforeach
@endforeach
@endsection