File "Apitrait.php"

Full Path: /home/fundopuh/trader.fxex.org/app/Traits/Apitrait.php
File size: 374 bytes
MIME-type: text/x-php
Charset: utf-8

<?php  
// this Code is Cracked by dharunMods-YouTube-Channel

namespace App\Traits;

use Illuminate\Support\Facades\Http;

trait Apitrait
{

    public function get_rate($coin, $currency)
    {
        $assetbase = $coin . $currency;
        $price = Http::get("https://api.brynamics.com/api/current-market-price/$assetbase")["0"]["Price"];
        return $price;
    }
};