Reputation: 426
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
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