update pagination livechat

This commit is contained in:
2024-05-17 14:00:24 +07:00
parent 504f152876
commit ba55866203
5 changed files with 37 additions and 18 deletions

View File

@@ -44,7 +44,7 @@ class Duitku
$merchantUserInfo = ''; // optional
$customerVaName = $patient->name ?? ''; // display name on bank confirmation display
$callbackUrl = env('DUITKU_PAYMENT_CALLBACK_URL'); // url for callback
$returnUrl = 'https://dev-superapp.primaya.id';
$returnUrl = env('');
$expiryPeriod = $paymentMethods->timeout; // set the expired time in minutes
// Customer Detail
@@ -53,9 +53,9 @@ class Duitku
$lastName = $patient->last_name ?? '';
// Address
$alamat = $patient->address->first()->line ?? '';
$alamat = $patient->address?? '';
// dd($alamat);
$city = $patient->address->first()->city->name ?? '';
$city = $patient->city ?? '';
// dd($city);
$postalCode = $patient->postal_code ?? '';
$countryCode = "ID";