feat: add PanelSetting to the dash panel

This commit is contained in:
idevakk
2025-10-02 19:48:45 +05:30
parent 47c6359663
commit 631143f160
7 changed files with 697 additions and 29 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Helper;
class ArrayHelper
{
/**
* Get value from array by key, return null if not found.
*/
public static function getValueFromArray(string $key, array $array)
{
return $array[$key] ?? null;
}
}