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