Exemplo n.º 1
0
 public function low()
 {
     $static = Fixed::where('key', '=', 'TL_INR_USD')->first();
     $conversion = $static['value'];
     return $conversion;
 }
Exemplo n.º 2
0
function transaction_exchangerate()
{
    $exchangeRate = Fixed::where('key', '=', 'TL_INR_USD')->first();
    return $exchangeRate['value'];
}