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