Components\ThemeManager\Controllers\Backend\ThemeManagerController::index PHP Method

index() public method

Display a listing of the theme_manager.
public index ( ) : Response
return Response
    public function index()
    {
        $themes = Theme::get();
        $this->layout->title = trans('cms.theme_manager');
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.theme_manager.index')->with('themes', $themes);
    }