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