Я создал свой собственный класс
<?php
namespace App\Çonsole;
use App\KernelSetting;
class Setting
{
/**
* @param $setting
* @return
*/
function KS($setting)
{
return KernelSetting::where('setting', $setting)->first()->value;
}
}
Теперь я так его называю Setting::KS('review_time_limit')
Как мне вернуть value
из полученной записи базы данных?
Я понял
Non-static method App\Console\Setting::KS() should not be called statically