Change the Default Fav icon in cakephp 3.0

4.8k views Asked by At

How to change the title logo in cakephp 3.0 ? Added another image instead of default cakephp logo image Anyone explain with example

Thank you

1

There are 1 answers

2
logan Sarav On BEST ANSWER

The fav icon can be edited by using the below code layout file.

$this->Html->meta(
    'favicon.ico',
    '/favicon.ico',
    ['type' => 'icon']
);

replace the favicon.ico with image you want.

Hope this helps..