Modules\Doptor\TranslationManager\Controllers\Backend\LanguageManagerController::index PHP Méthode

index() public méthode

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