for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Controllers;
/**
* Class Home
*
* The home page
* @package App\Controllers
*/
class Home extends \Core\Controller
{
public function index()
$Includes = new \App\Models\Includes($this->container);
$this->data['navigation'] = $Includes->getMenu();
$this->data['jumbotron'] = $Includes->getJumbotron();
$this->renderView('Home');
}