Maps always show Tooltip

This commit is contained in:
Ibnu Maksum
2024-03-23 12:38:23 +07:00
parent 273d98f3ad
commit 04a21d3eb2
3 changed files with 118 additions and 112 deletions

View File

@ -28,6 +28,7 @@ switch ($action) {
'name' => $customer->fullname,
'balance' => $customer->balance,
'address' => $customer->address,
'direction' => $customer->coordinates,
'info' => Lang::T("Username") . ": " . $customer->username . " - " . Lang::T("Full Name") . ": " . $customer->fullname . " - " . Lang::T("Email") . ": " . $customer->email . " - " . Lang::T("Phone") . ": " . $customer->phonenumber . " - " . Lang::T("Service Type") . ": " . $customer->service_type,
'coordinates' => '[' . $customer->coordinates . ']',
];