contact_category = $contact_category; $this->contact = $contact; } /** * Returns count of contact. * * @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.contact_category.gadget', $count = 10) { if (User::hasRole('user')) { $this->contact_category->pushCriteria(new \Litepie\Agency\Repositories\Criteria\ContactCategoryUserCriteria()); } $contact_category = $this->contact_category->scopeQuery(function ($query) use ($count) { return $query->orderBy('id', 'DESC')->take($count); })->all(); return view('contact::' . $view, compact('contact_category'))->render(); } /** * Make gadget View * * @param string $view * * @param int $count * * @return View */ public function gadget($view = 'admin.contact.gadget', $count = 10) { if (User::hasRole('user')) { $this->contact->pushCriteria(new \Litepie\Agency\Repositories\Criteria\ContactUserCriteria()); } $contact = $this->contact->scopeQuery(function ($query) use ($count) { return $query->orderBy('id', 'DESC')->take($count); })->all(); return view('contact::' . $view, compact('contact'))->render(); } }