I am struggling with adding an icon into the page title. So far I have tried adding it like this :
<title>
<link rel="icon" href="{!! asset('images/gcm_ico.ico') !!}"/>@yield('page-title')
</title>
But it gets escaped in all browsers as shown here :
I also tried printing the link with
{{ "<link rel='icon' hrer='".asset("images/gcm_ico.ico")."' />" }}.
Has anyone done this successfully? Thanks in advance
