This commit is contained in:
zhang zhuo 2025-12-26 17:34:35 +08:00
parent 6ff3b12767
commit 37a72de735
1 changed files with 6 additions and 0 deletions

6
app/helpers.php Normal file
View File

@ -0,0 +1,6 @@
<?php
function sysConfig($key)
{
return \App\Model\SystemConfig::where('config_key', $key)->value('config_value') ?? null;
}