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