Seo titles and seo general

hi iam new to cakephp and i want to chanhe the title of the first homepage site and add some metakeywords and description…where i have to go to do this? thanks

Cakephp does helper function that helps for meta description and keywords.
like

<?php
echo $this->Html->meta(
    'description',
    'enter any meta description here'
);
?>
// Output
<meta name="description" content="enter any meta description here" />

**Note:**Description has contain your text line

hi my friend the website is allready has a title and metakeywords but i want to change them please tell me wich file i have to change thanks

maybe you are looking for this
$this->assign(‘title’, $post);

described here: https://book.cakephp.org/3.0/en/views.html