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