I am writing an application in CodeIgniter where I specify the meta-tag on every page in every controller which I have managed to send to my header te
You can use template library for robustness and use as follows:
Controller
$this->template->title('Home :: ' . $this->data['metadata']['site_name']) ->set_layout('home_layout') ->build('listing_card', $this->data);
Views
Reference: https://github.com/philsturgeon/codeigniter-template