faq = $faq; $this->categories = $categories; } /** * Returns count of faq. * * @param array $filter * * @return int */ public function count() { return 0; } /** * Make gadget View * * @param string $view * * @param int $count * * @return View */ public function gadget($view = 'admin.faq.gadget', $count = 10) { if (User::hasRole('user')) { $this->faq->pushCriteria(new \Litepie\Bixo\Repositories\Criteria\FaqUserCriteria()); } $faq = $this->faq->scopeQuery(function ($query) use ($count) { return $query->orderBy('id', 'DESC')->take($count); })->all(); return view('faq::' . $view, compact('faq'))->render(); } /** * Make gadget View * * @param string $view * * @param int $count * * @return View */ public function gadget($view = 'admin.categories.gadget', $count = 10) { if (User::hasRole('user')) { $this->categories->pushCriteria(new \Litepie\Bixo\Repositories\Criteria\CategoriesUserCriteria()); } $categories = $this->categories->scopeQuery(function ($query) use ($count) { return $query->orderBy('id', 'DESC')->take($count); })->all(); return view('faq::' . $view, compact('categories'))->render(); } }