fix: update payment url while check balance

This commit is contained in:
Djery-Tom 2023-08-09 12:37:58 +01:00
parent 6351305a5f
commit 6bc8a73356
1 changed files with 2 additions and 2 deletions

View File

@ -2059,9 +2059,9 @@ class iLinkTransactionController extends Controller
{
// Pay through payment service
$client = new Client([
'base_uri' => config('variable.payment_service_url'),
'base_uri' => config('services.payment_service.base_uri'),
'headers' => [
'Authorization' => config('variable.payment_service_key'),
'Authorization' => config('services.payment_service.key'),
]
]);