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