18 lines
425 B
PHP
18 lines
425 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use Illuminate\Support\Facades\DB;
|
||
|
|
|
||
|
|
if (! function_exists('configSettings')) {
|
||
|
|
function configSettings($key, $settingsType)
|
||
|
|
{
|
||
|
|
try {
|
||
|
|
$config = DB::table('settings')->where('key_name', $key)
|
||
|
|
->where('settings_type', $settingsType)->first();
|
||
|
|
} catch (Exception $exception) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
return (isset($config)) ? $config : null;
|
||
|
|
}
|
||
|
|
}
|