/**
  * Display a listing of the menu categories.
  *
  * @return Response
  */
 public function index()
 {
     $menu_cats = \MenuCategory::latest()->get();
     $this->layout->title = 'All Menu Categories';
     $this->layout->content = \View::make($this->link_type . '.' . $this->current_theme . '.menu_categories.index')->with('menu_cats', $menu_cats);
 }