Closes #137 - fast component status updates.

This commit is contained in:
James Brooks
2014-12-30 13:57:38 +00:00
parent 21c266bba5
commit aa7d47b4b5
10 changed files with 445 additions and 4 deletions
+4 -1
View File
@@ -10,7 +10,10 @@ class DashboardController extends Controller
public function showDashboard()
{
// TODO: Find steps needed to complete setup.
return View::make('dashboard.index');
$components = Component::all();
return View::make('dashboard.index')->with([
'components' => $components
]);
}
/**