diff --git a/app/Http/Controllers/Gateways/BlockonomicsController.php b/app/Http/Controllers/Gateways/BlockonomicsController.php deleted file mode 100644 index 624235a362..0000000000 --- a/app/Http/Controllers/Gateways/BlockonomicsController.php +++ /dev/null @@ -1,38 +0,0 @@ -query('currency'); - $response = Http::get("https://www.blockonomics.co/api/price?currency={$currency}"); - - if ($response->successful()) { - return response()->json(['price' => $response->json('price')]); - } - - return response()->json(['error' => 'Unable to fetch BTC price'], 500); - } - - -}