第一个问题:
我已经在许多类型的文本和事物中插入了本地化,但我不知道如何以以下形式将其导入:
{{ Form::label('name', 'here') }}
{{ Form::text('name', null, array('placeholder' => 'here')) }}
{{ Form::submit('here', array('class' => 'btn btn-success')) }}
{{ Form::button('here', array('class' => 'btn btn-default')) }}
我希望它在表单标签“这里”和文本“这里”的占位符中。
第二个问题:
我不允许在我的语言文件中使用链接插入它:text here blah blah <a href="{{ URL::to('text') }}">BLAH</a>?
反正有没有用链接插入它?
提前致谢。