How can I use HTML tags in a Laravel localization file?

寵の児 提交于 2019-11-30 10:43:40

Use {!! !!} instead of {{ }} to prevent escaping:

{!! trans('nav.find') !!}

Using @lang directive:

@lang('nav.find')

Source: Retrieving Translation Strings

Using Laravel 5.6 and above, can use the __ helper along with the blade syntax:

{!! __('pagination.next') !!}

Had to do those for the pagination blade templates.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!