Ejemplo n.º 1
0
 public function loadPage(Request $request)
 {
     $this->getChart($request);
     $result = new Helper();
     //$result->buildNavMenuNew();
     return View('linechart')->with('result', $result->buildNavMenu());
 }
Ejemplo n.º 2
0
 public function loadPage(Request $request)
 {
     $runs = $this->getRuns();
     $testTotals = $this->getTestResultTotals($runs);
     $this->getCharts($testTotals);
     $nav = new Helper();
     return view('runs.index')->with(['runs' => $runs, 'nav' => $nav->buildNavMenu()]);
 }
Ejemplo n.º 3
0
 public function loadPage(Request $request)
 {
     $nav = new Helper();
     $runsModel = new \App\Run();
     //$runs = $this->getRuns();
     $runs = $runsModel->getRunsWithinXDays(90);
     $runs_for_dropdown = $runsModel->getRunsForDropdown();
     return view('Admin.edit')->with(['runs' => $runs, 'nav' => $nav->buildNavMenu(), 'runs_for_dropdown' => $runs_for_dropdown]);
 }
Ejemplo n.º 4
0
 public function loadPage($id = null)
 {
     $runModel = new \App\Run();
     $run = $runModel->getRun($id);
     if (is_null($run)) {
         \Session::flash('flash_message', 'Run not found.');
         return redirect('/');
     }
     $nav = new Helper();
     return view('runs.single')->with(['nav' => $nav->buildNavMenu(), 'run' => $run]);
 }
Ejemplo n.º 5
0
 public function loadPage(Request $request)
 {
     $nav = new Helper();
     $runs = $this->getRuns();
     return view('user.help')->with(['runs' => $runs, 'nav' => $nav->buildNavMenu()]);
 }
Ejemplo n.º 6
0
 public function loadPage()
 {
     $applications = $this->getIndex();
     $nav = new Helper();
     return view('applications.index')->with(['applications' => $applications, 'nav' => $nav->buildNavMenu()]);
 }