favicon not being displayed
following the docs https://filamentphp.com/docs/3.x/panels/themes#adding-a-favicon
i tried changing the favicon but it displays the default globe, even do the same asset path being used outside of fillament displays the png correctly on a blade file, any help?
file size 14kb
using in all panels ->favicon(asset('assets/images/logo.png'))
Solution:Jump to solution
Oh hi, i fixed by changing the default favicon.ico from the public directory.
5 Replies
does your browser console throes any 404 errors?
some browsers fetches the
/favicon.ico
directly from the root dir (/public in laravel case) so make sure to have a copy in there or change it path to the public
The format may cuase an issue too, make sure it's .ico
and check from different browsers as well as refreshing the browser cache (ctrl/cmd + shift + r)first try
php artisan optimize
You can also configure favicon globally from the <head> of your layout file.

Solution
Oh hi, i fixed by changing the default favicon.ico from the public directory.
it did not
strange because in the docs they use a png... but i tried refreshing and clearing the cache, but thanks for the tips may help some one that has the problem