games = $games; } /** * Returns count of games. * * @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.games.gadget', $count = 10) { if (User::hasRole('user')) { $this->games->pushCriteria(new \Litepie\Litecms\Repositories\Criteria\GamesUserCriteria()); } $games = $this->games->scopeQuery(function ($query) use ($count) { return $query->orderBy('id', 'DESC')->take($count); })->all(); return view('games::' . $view, compact('games'))->render(); } }