/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $todo_lists = TodoList::all();
     return View::make('todos.index')->with('todo_lists', $todo_lists);
 }