/**
  * Display a listing of the resource.
  * @return Response
  */
 public function index()
 {
     $languages = TranslationLanguage::all();
     $this->layout->title = 'All Translation Languages';
     $this->layout->content = View::make('language_manager::index')->with('languages', $languages);
 }