2

My project this Laravel 5.6 Ecommerce. Favicon does not appear, but the file path is correct ..

Frontend:

<head>              
    <link rel="shortcut icon" href="https://www.luckykidstasarim.com/img/favicon.ico">
</head>

Backend:

<link rel="shortcut icon" href="{{ asset('img/favicon.ico') }}">
pirho
  • 11,565
  • 12
  • 43
  • 70
Diyar Akengin
  • 29
  • 1
  • 5

1 Answers1

4

You can try this:

<link rel="shortcut icon" href="{{ asset('img/favicon.ico') }}"  type='image/x-icon'>
Arijit Jana
  • 220
  • 1
  • 4