Laravel中的Echo本地化文本HTML

时间:2018-11-09 06:52:30

标签: laravel laravel-5

本地化HTML不能正确回显。有谁知道为什么它不起作用。

HTML:(index.blade.php)

mask = df.cond
df.loc[mask, 'value1'] =  df.loc[mask, 'value2'] * 2
print (df)
    cond  value1  value2
0   True       2       1
1  False       3       5
2   True       4       2
3   True      46      23
4  False       4       2

本地化:(/resources/lang/ko/myaccount.php)

<div class="form-group">
              <div class="col-sm-12 box-el">
                <input type="password" class="form-control" name="password" required="">
                <label>{!! __('myaccount.p_placeholder') !!}</label>
              </div>
            </div>

0 个答案:

没有答案