@extends('layouts.admin') @section('title','Rates') @section('page-title','Exchange Rate Management') @section('content')
{{-- Add New Rate --}}

add_circle Add New Asset

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

{{ $label }}

@foreach($grouped->get($cat, collect()) as $rate)

{{ $rate->asset_type }}

Current: ₦{{ number_format($rate->rate, 2) }}

@csrf
@endforeach
@endforeach
@endsection