Karthik Keyan
Karthik Keyan

Reputation: 426

Change the Default Fav icon in cakephp 3.0

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

Upvotes: 1

Views: 4955

Answers (1)

logan Sarav
logan Sarav

Reputation: 781

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..

Upvotes: 6

Related Questions