yenoyi7740's avatar

How to use favicon in Laravel?

How to implement this in Laravel? I created favicons on https://favicomatic.com/

0 likes
2 replies
bobbybouwmann's avatar
Level 88

In general, you need to do something like this in your <head> </head> tags in your HTML

<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">

I believe the site you used also generates an example. It's basically copy paste here :)

Another great website to generate this is https://favicon.io/

2 likes

Please or to participate in this conversation.