refactoring, airtelmoney test

This commit is contained in:
Kwesi Banson Jnr
2025-11-17 18:39:10 +00:00
parent d8164b3139
commit 54edafc9e7
34 changed files with 2811 additions and 27 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Config;
class KazTestController extends Controller
{
public function main(){
//Testing the retrieval of kazang Base Url from Config
$kazang = Config('kazang');
$kaz_host = $kazang['test_base_url'];
return $kaz_host;
}
}