在喷射流配置文件中,使用 @if 语句 $this->enabled 管理脚手架。我不明白它指的是什么特定的对象?
我正在查看的文件“resources\views\profile\two-factor-authentication-form.blade.php”:
@if ($this->enabled)
{{ __('You have enabled two factor authentication.') }}
@else
{{ __('You have not enabled two factor authentication.') }}
@endif
Stackoverflow 系统不允许我包含整个文件,所以我希望我包含的部分代码就足够了。