コード例 #1
0
ファイル: Fixed.php プロジェクト: 08euccs014/TrueAnalytics
 public function low()
 {
     $static = Fixed::where('key', '=', 'TL_INR_USD')->first();
     $conversion = $static['value'];
     return $conversion;
 }
コード例 #2
0
function transaction_exchangerate()
{
    $exchangeRate = Fixed::where('key', '=', 'TL_INR_USD')->first();
    return $exchangeRate['value'];
}