は、コントローラまたはコマンドからてgetDateFormat()メソッドにアクセスすることが可能ですか?アクセス() - Laravel
私はこのように私のモデルにそれを使用することができます。
public function getCreatedAtAttribute($value)
{
$format = $this->getDateFormat();
return Carbon::createFromFormat($format, $value, 'UTC')->setTimezone(\Helper::getTimezone());
}
が、この$format = getDateFormat();
のように、私のコントローラまたはコマンドでそれを使用しているとき、私は次のエラーを取得する:
local.ERROR: exception 'Symfony\Component\Debug\Exception\FatalErrorException' with message 'Call to undefined function App\Console\Commands\getDateFormat()'
スーパー、ありがとう@Silwerclaw – user3489502