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