/**
  * @param ThemeManager $theme
  */
 public function __construct(ThemeManager $theme)
 {
     $this->middleware('auth.admin');
     parent::__construct($theme);
 }
 /**
  * @param ThemeManager $theme
  * @param SeoManager $seo
  */
 public function __construct(ThemeManager $theme, SeoManager $seo)
 {
     parent::__construct($theme);
     $this->seo = $seo;
 }