我在Laravel 5.3中使用了新的Laravel Notifications,我喜欢它!
现在,我需要在我的内容中添加一些格式,例如:
<strong>Name:</strong> My Name <br/>
<strong>City:</strong> NYC <br/>
<strong>Country:</strong>USA <br/>
并且不在line()方法中解释标签。
我尝试更改默认视图并将其发布,但随后我的所有通知视图都被新视图更改,我只想在1个案例中应用....
我该怎么办?
答案 0 :(得分:5)
您确实需要更新通知视图,以便您走在正确的轨道上。
基本上在发布通知包的资源后:
$ php artisan vendor:publish --tag=laravel-notifications
您需要做的只是打开resources/views/vendor/notifications/email.blade.php
并将{{ $line }}
的匹配项替换为{!! $line !!}
。
这只是告诉Blade不要逃避标签。
希望这有帮助!