php call protected function from child class code example
Example: php call protected function from child class
class adminpanel extend myadmin {
public function index() {
$this->_layouts();
// or
parent::_layouts();
}
}