added tabulator js files

This commit is contained in:
Kwesi Banson Jnr
2026-04-08 14:23:36 +00:00
parent 2064c2d6e5
commit 19a33bc2eb
4 changed files with 401 additions and 2 deletions

View File

@@ -35,12 +35,15 @@ class ApiCalls
$client_id = session('current_user.org_id');
if ($url == 'sms/send') {
// code...
$apps_url = "applications/client/$client_id?page=0&size=20&sort=createdAt,desc";
$result = static::CurlGet($apps_url);
$result_arr = json_decode($result);
$api_key = $result_arr->content[0]->apiKey;
$header_part = "Authorization: Bearer " . $api_key;
$api_key = $result_arr->content[0]->apiKey;
$header_part = "Authorization: Bearer " . $api_key; //env('SUNKING_APIKEY');
}
// dd($header_part);
\Log::info('Request Params :' . $data);
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => $post_url,