Skip to content

Instantly share code, notes, and snippets.

@jeffandersen
Created December 13, 2018 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffandersen/84f416639886e22168259758c68a670b to your computer and use it in GitHub Desktop.
Save jeffandersen/84f416639886e22168259758c68a670b to your computer and use it in GitHub Desktop.
Route::get('/', function () {
// ...
$stats = Cache::getMemcached()->getStats();
return view('tasks', [
'tasks' => $tasks,
'stats' => array_pop($stats)
]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment