Example #1
0
 /**
  * Return collections view by current theme
  *
  * @return \Illuminate\Database\Eloquent\Collection|static[]
  */
 public function getViewsCollectionByCurrentThemes()
 {
     $currentThemeName = $this->izTheme->getCurrentThemeName();
     return $this->viewModel->query()->where('theme_name', $currentThemeName)->get();
 }