6739237477
Use class with static files instead of load it directly in composer json
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
|
namespace App;
|
|
|
|
use DateTime;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class Helper
|
|
{
|
|
|
|
public static function formatNumber($amount)
|
|
{
|
|
$formattedAmount = number_format($amount, 2, '.', ',');
|
|
|
|
return $formattedAmount;
|
|
}
|
|
|
|
public static function formatDate($date_string)
|
|
{
|
|
return (new DateTime($date_string))->format("d-m-Y");
|
|
}
|
|
|
|
public static function getActiveCawanganDbConnection()
|
|
{
|
|
|
|
$all_active_db_keys = array_filter(array_keys(config('database.connections')), function ($connection) {
|
|
try {
|
|
DB::connection($connection)->getPdo();
|
|
return true;
|
|
} catch (\Throwable $th) {
|
|
return false;
|
|
}
|
|
});
|
|
|
|
$non_cawangan_database = ['lelong', 'online_arrahn', 'kaunterpkb'];
|
|
|
|
$all_cawangan_db = array_filter($all_active_db_keys, function ($db_key) use ($non_cawangan_database) {
|
|
$isNotCawangan = in_array(config('database.connections.' . $db_key . '.database'), $non_cawangan_database);
|
|
|
|
if ($isNotCawangan) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
});
|
|
|
|
return $all_cawangan_db;
|
|
|
|
}
|
|
}
|