Reputation: 29
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
Reputation: 228
You can try this:
<link rel="shortcut icon" href="{{ asset('img/favicon.ico') }}" type='image/x-icon'>
Upvotes: 4