@extends('admin.template') @section('title') Admin-Withdraws @endsection @section('css') @endsection @section('content')

Currency Rate List

 / Dashboard 

Currency-Rate-List

Currency Rates

@csrf
@foreach($currencies as $currency)
name=="BTC") value="{{round($btcRate,2)}}" @elseif($currency->name=="ETH") value="{{round($ethRate,2)}}" @else value="1" @endif >
@endforeach
{{-- --}}
@if ($message = Session::get('success'))
{{ $message }}
@endif @if ($message = Session::get('error'))
{{ $message }}
@endif

Currency Rates

@foreach($currencyRates as $currencyRate) @endforeach
id Currency Rate Profit Percentage Date Action
{{$loop->iteration}} {{$currencyRate->currency}} {{$currencyRate->currency_rate}} {{$currencyRate->profit_percentage}} {{$currencyRate->created_at}}
@endsection @section('js') @endsection