public function createView($path, $layout = 'index') {
if(file_exists($path)) {
require_once $_SERVER["DOCUMENT_ROOT"] . '/core/views/layout/' . $layout . '.php';
require_once $path;
} else {
View::pageNotFound();
}
}