I can't figure out why this code is outputting a Notice error
<?php
class Dashboard extends CI_Controller {
public $data = array();
public function __construct()
{
parent::__construct();
$this->data['brand_title'] = 'Company Brand';
}
public function index()
{
echo $brand_title;
}
}
I get a Undefined variable: brand_title error.