Diyar Akengin
Diyar Akengin

Reputation: 29

Laravel 5.6 favicon not showing

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') }}">

Upvotes: 2

Views: 5402

Answers (1)

Arijit Jana
Arijit Jana

Reputation: 228

You can try this:

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

Upvotes: 4

Related Questions